- 博客(3)
- 收藏
- 关注
转载 MySQL中找出数据库中表名以cf_打头的所有表的方法
SELECT table_name from information_schema.columns where table_name like 'cf\_%' group by table_name;
2015-04-09 22:24:13
453
原创 MySQL中找出数据库中以同一字符串开头的表名的所有表
SELECT table_name from information_schema.columns where table_name like 'cf\_%' group by table_name;
2015-04-09 22:21:27
2984
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人