1、在项目开发中经常遇到删除一系列类型的表
-- 删除数据库名为money_chatserver'数据库的以b_开头的所以表
SELECT CONCAT( 'drop table ', table_name, ';' ) FROM information_schema.tables WHERE table_name REGEXP 'b_' AND table_schema='money_chatserver' ;
1、在项目开发中经常遇到删除一系列类型的表
-- 删除数据库名为money_chatserver'数据库的以b_开头的所以表
SELECT CONCAT( 'drop table ', table_name, ';' ) FROM information_schema.tables WHERE table_name REGEXP 'b_' AND table_schema='money_chatserver' ;