<TABLE NAME>
DROP TABLE <TABLE NAME>
mysql> show tables;
+-------------------+
| Tables_in_cat_app |
+-------------------+
| cats |
+-------------------+
1 row in set (0.00 sec)
mysql> DROP TABLE cats;
Query OK, 0 rows affected (0.01 sec)
mysql> show tables;
Empty set (0.00 sec)
--이미 테이블이 삭제된 상태에서 한번 더 삭제를 하려고 하면 오류가 발생한다.
mysql> drop table cats;
ERROR 1051 (42S02): Unknown table 'cat_app.cats'
DROP DATABASE
와 유사하다.