Drop all mysql tables
To drop all mysql tables from the command line, use the following command:
mysqldump -u [username] -p [password] --add-drop-table --no-data [databasename] | grep ^DROP | mysql -u [username] -p [password] [databasename]© GeekLabInfo

