-- 创造无限可能

mysql 批量删除表

2022-03-23 01:24:06
736 人浏览 8 人点赞
有用,点赞支持一下


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