1)批量删除表
Select CONCAT( 'drop table ', table_name, ';' ) 
FROM information_schema.tables 
Where table_name LIKE 'pre_%';

相关文章:

  • 2021-07-27
  • 2021-08-03
  • 2022-03-07
  • 2021-09-23
猜你喜欢
  • 2022-01-26
  • 2022-01-18
  • 2021-11-15
  • 2021-06-11
  • 2021-04-16
相关资源
相似解决方案