Skip to content

Latest commit

 

History

History
20 lines (12 loc) · 378 Bytes

shan-chu-shu-ju-biao.md

File metadata and controls

20 lines (12 loc) · 378 Bytes

删除数据表

使用DROP TABLE语句可以删除一个或多个数据表,语法格式如下:

DROP TABLE [IF EXISTS] 表名1 [ ,表名2, 表名3 ...]

我们test_db数据库现在有两个数据表

现在删除tb_emp1表。

DROP TABLE tb_emp1;