Friday, June 1, 2012

Learning MySQL: Part 2

Restoring from a DB dump:
shell> mysql -u username -p db_name < dump.sql

Drop database:
mysql> DROP DATABASE db_name;

No comments:

Post a Comment