Select CONCAT( 'drop table ', table_name, ';' )
FROM information_schema.tables
Where table_name LIKE 'dede_%';
本文共 153 字,大约阅读时间需要 1 分钟。
Select CONCAT( 'drop table ', table_name, ';' )
FROM information_schema.tables
Where table_name LIKE 'dede_%';
转载于:https://blog.51cto.com/aaronsa/1741505