It looks like the database already exists and you didn't use IF NOT EXISTS. you can run show databases; to see if it is already there. If you want to create a new database with the same name, you'd need to delete the existing database with drop database 'beauty_wrdp2'; and then create the new database.
When you export a database try to tell to the program which helps you (phpMyAdmin or something like that) to automatically add Drop table if exists to the SQL queries...