码迷,mamicode.com
首页 > 数据库 > 详细

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

时间:2017-06-07 22:23:06      阅读:236      评论:0      收藏:0      [点我收藏+]

标签:soft   grant   images   family   mit   数据   limit   div   weight   

 //查询所有表的所有字段:

select * from information_schema.columns where table_name=sys_users 

 效果:

技术分享

 

//查询指定表的所有字段:

select * from information_schema.columns where table_name=sys_users and TABLE_SCHEMA=taoke

效果:

技术分享

 //查询指定表的所有字段的指定类型,注释:

技术分享

查询所有含有此字段名的表:

SELECT * FROM information_schema.columns WHERE column_name=name;

技术分享

查询指定数据库含有此字段名的表:

SELECT * FROM information_schema.columns WHERE column_name=name and TABLE_SCHEMA=wljdb;

 

技术分享

查询指定表数据库指定表的所有字段

select column_name from information_schema.COLUMNS where table_name=sys_users and TABLE_SCHEMA=taoke

技术分享

查询指定表数据库指定表的第二个字段名:

select column_name from information_schema.COLUMNS where table_name=sys_users and TABLE_SCHEMA=taoke LIMIT 1,1

技术分享

以上,举一反三

---------------------完毕----------------------------

MySQL权限  grant

http://www.cnblogs.com/Richardzhu/p/3318595.html

 

 

 

  

 

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

标签:soft   grant   images   family   mit   数据   limit   div   weight   

原文地址:http://www.cnblogs.com/Alwaysbecoding/p/6959262.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!