MySQL 常用使用语句

1)批量删除表
Select CONCAT( 'drop table ', table_name, ';' ) 
FROM information_schema.tables 
Where table_name LIKE 'pre_%';
posted @ 2017-12-26 11:35  xidianzxm  阅读(82)  评论(0编辑  收藏  举报