MySQL批量删除指定前缀表
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MySQL批量删除指定前缀表相关的知识,希望对你有一定的参考价值。
Select CONCAT( ‘drop table ‘, table_name, ‘;‘ )
FROM information_schema.tables
Where table_name LIKE ‘dede_%‘;
本文出自 “我的运维时光” 博客,请务必保留此出处http://aaronsa.blog.51cto.com/5157083/1741505
以上是关于MySQL批量删除指定前缀表的主要内容,如果未能解决你的问题,请参考以下文章