# 删除表 Joe 想要删除数据库中的 good_category 表,他应该怎么操作?
点击进入[MySQL实战练习环境](https://mydev.csdn.net/product/pod/new?image=cimg-centos7-skilltreemysql&connect=auto&create=auto&utm_source=skill){target="_blank"}。 * `show databases;` 列出所有数据库 * `show tables;` 列出所有表 ## 答案 ```sql drop table goods_category; ``` ## 选项 ### A ```sql delete table good_category; ``` ### B ```sql delete table where name = 'good_category'; ``` ### C ```sql remove table good_category; ``` ### D ```sql truncate table goods_category; ``` ### E ```sql clean table goods_category; ```