MySQL中找出数据库中表名以cf_打头的所有表的方法

来源:互联网 发布:linux强制删除目录 编辑:程序博客网 时间:2024/05/17 04:04
SELECT table_name from information_schema.columns where table_name like 'cf\_%' group by table_name;
0 0