1 Select CONCAT( 'drop table ' , table_name, ';' ) 2 FROM information_schema.tables 3 Where table_name LIKE 'hx_%' ; 说明: like hx_% 其中 hx_是你需要替换的表前缀。 执行查询,会自动生成出 drop table table_name这样的SQL语句。 然后复制 drop语
- Select CONCAT( 'drop table ', table_name, ';' )
-
- FROM information_schema.tables
-
- Where table_name LIKE 'hx_%';
说明: like ‘hx_%’ 其中 hx_是你需要替换的表前缀。
执行查询,会自动生成出 drop table table_name这样的SQL语句。
然后复制 drop语句 可以执行删除的操作了。