[root]# mysql -u root -p
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 94 to server version: 3.23.53-Max-log
Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
mysql> show databases;
+-------------+
| Database |
+-------------+
| mt_data |
| mysql |
+-------------+
2 rows in set (0.00 sec)
mysql> DROP DATABASE mt_data;
Query OK, 48 rows affected (0.01 sec)
mysql> show databases;
+-------------+
| Database |
+-------------+
| mysql |
+-------------+
1 rows in set (0.00 sec)
mysql>
|