批量删除指定表前缀表

清华大佬耗费三个月吐血整理的几百G的资源,免费分享!....>>>

Select CONCAT( 'drop table ', table_name, ';' ) 
FROM information_schema.tables 
Where table_name LIKE 'dede_%';