当前位置:Gxlcms > 数据库问题 > mysql5.5基础 drop table... 删除一个表或者多个表

mysql5.5基础 drop table... 删除一个表或者多个表

时间:2021-07-01 10:21:17 帮助过:17人阅读

show tables; +--------------------+ | Tables_in_newbases | +--------------------+ | student | +--------------------+ 1 row in set (0.00 sec) mysql> drop table student; Query OK, 0 rows affected (0.07 sec) mysql> show tables; Empty set (0.00 sec) mysql>

 

 

删除多个表 的代码及效果

mysql> show tables;
+--------------------+
| Tables_in_newbases |
+--------------------+
| myt1               |
| myt2               |
+--------------------+
2 rows in set (0.00 sec)

mysql> drop table myt1,myt2;
Query OK, 0 rows affected (0.10 sec)

mysql> show tables;
Empty set (0.00 sec)

mysql>

  

  


mysql,关系型数据库管理系统,优秀,值得学习。
学习资源:itcast和itheima视频库 + 清净的心地。
如果您有公开的资源,可以分享给我的话,用您的资源学习也可以。
博文是观看视频后,融入思考写成的。博文好,是老师讲得好。博文坏,是 给最苦 没认真。

mysql5.5基础 drop table... 删除一个表或者多个表

标签:自己的   color   删除   抉择   数据库   5.5   mysq   show   tab   

人气教程排行