查看創(chuàng)建指定表時(shí)的詳情,包括字符集編碼格式
show create tabble tablename
刪除數(shù)據(jù)庫(kù)
drop命令格式:drop database <數(shù)據(jù)庫(kù)名>;
例如柿汛,刪除名為 xhkdb的數(shù)據(jù)庫(kù):
mysql> drop database xhkdb;
[例子1] 刪除一個(gè)已經(jīng)確定存在的數(shù)據(jù)庫(kù):
mysql> drop database drop_database;
Query OK, 0 rows affected (0.00 sec)
[例子2] 刪除一個(gè)不確定存在的數(shù)據(jù)庫(kù):
mysql> drop database drop_database;
ERROR 1008 (HY000): Can't drop database 'drop_database'; database doesn't exist
// 發(fā)生錯(cuò)誤,不能刪除'drop_database'數(shù)據(jù)庫(kù)古掏,該數(shù)據(jù)庫(kù)不存在