MYSQL 数据库名、表名、字段名查询

 //查询所有表的所有字段: select * from information_schema.columns where table_name='sys_users'  效果:   //查询指定表的所有字段: select * from information_schema.columns where table_name='sys_users' and TABLE_SCHEMA='taoke'
相关文章
相关标签/搜索