标签:rop format test sele cat sql mys mysql trunc
1:删除表
SELECT CONCAT(‘drop table ‘,table_name,‘;‘) FROM information_schema.`TABLES` WHERE table_schema=‘test‘;
2:清除表
SELECT CONCAT(‘truncate ‘,table_name,‘;‘) FROM information_schema.`TABLES` WHERE table_schema=‘test‘;
标签:rop format test sele cat sql mys mysql trunc
原文地址:https://www.cnblogs.com/qiaoli0726/p/10263688.html