删除表——drop
# 删除表
drop table <TableName>;
1
亦可同时删除多个表,并且可以加上 if exists
语句。
Example:
mysql> drop table if exists teachers, students;
Query OK, 0 rows affected (0.01 sec)
1
2
2
编辑 (opens new window)
上次更新: 2022/12/03, 17:31:39