mysql删除数据库中的所有表
1、最简单的⽅法,最⽅便的⽅法:
删除数据库,然后重新建⽴⼀个空数据库
2、但是有删除所有表的⽅法
(1)产⽣删除表的sql语句,(2)执⾏sql语句
产⽣删除表的sql语句:
select concat("DROP TABLE IF EXISTS ", table_name, ";") from information_schema.tables where
table_schema="Your_database_name";
执⾏以上语句就可
truncate删除数据清空表中的sql语句:
select concat("truncate TABLE ", table_name, ";") from information_schema.tables where table_schema="Your_database_name";原⽂链接:blog.csdn/hang916/java/article/details/79461693
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论