查询库下所有的表名
SELECT table_name FROM information_schema.tables WHERE table_schema='库名'
模糊表名查询
SELECT table_name FROM information_schema.tables WHERE table_schema='库名' AND table_name LIKE '表名前缀%'
查询库下所有的表名
SELECT table_name FROM information_schema.tables WHERE table_schema='库名'
模糊表名查询
SELECT table_name FROM information_schema.tables WHERE table_schema='库名' AND table_name LIKE '表名前缀%'
本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。