1)批量删除表
Select CONCAT( 'drop table ', table_name, ';' )
FROM information_schema.tables
Where table_name LIKE 'pre_%';
标签:tables mysql class down ble div like sch orm
1)批量删除表
Select CONCAT( 'drop table ', table_name, ';' )
FROM information_schema.tables
Where table_name LIKE 'pre_%';
标签:tables mysql class down ble div like sch orm
原文地址:https://www.cnblogs.com/xidianzxm/p/8117195.html