zbb20181206 查找mysql数据库中所有包含特定名字的字段所在的表

查询数据库中所有表名称的语句
SELECT table_name, table_type, engine
FROM information_schema.tables
WHERE table_schema = '数据库名称'
ORDER BY table_name DESC;

查找mysql数据库中所有包含特定名字的字段所在的表
select * from INFORMATION_SCHEMA.columns
where COLUMN_NAME Like '%placement%';

posted @ 2018-12-06 09:51  DaryllD  阅读(296)  评论(0编辑  收藏  举报