博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
information_schema.columns 学习
阅读量:6257 次
发布时间:2019-06-22

本文共 1870 字,大约阅读时间需要 6 分钟。

每一个表中的每一列都会在information_schema.columns表中对应一行

1、informaiton_schema.columns 常用列:

  1、table_catalog          :不管是table | view 这个列的值总是def

  2、table_schema           :表 | 视图所在的数据库名

  3、table_name            :表名 | 视图名

  4、column_name           :列名

  5、column_default           :列的默认值

  6、is_nullable             :是否可以取空值

  7、data_type             :列的数据类型

  8、character_maximum_length    :列的最大长度(这列只有在数据类型为char | varchar 时才有意义)

  9、column_type           :列类型这个类型比data_type列所指定的更加详细,如data_type 是int 而column_type 就有可以能是int(11)

  10、column_key           :列上的索引类型 主键-->PRI  | 唯一索引 -->UNI  一般索引 -->MUL

 

2、例子

查看tempdb 库中的列信息

select     table_schema,table_name,column_name,column_type,column_default,is_nullable,column_keyfrom    information_schema.columnswhere table_schema='tempdb';+--------------+------------+-------------+-------------+----------------+-------------+------------+| table_schema | table_name | column_name | column_type | column_default | is_nullable | column_key |+--------------+------------+-------------+-------------+----------------+-------------+------------+| tempdb       | t          | x           | int(11)     | NULL           | NO          | PRI        || tempdb       | t          | y           | varchar(32) | hello world... | NO          | MUL        || tempdb       | t2         | id          | int(11)     | NULL           | NO          | PRI        || tempdb       | t2         | age         | int(11)     | 0              | NO          | PRI        || tempdb       | t2         | name        | varchar(10) | NULL           | YES         |            || tempdb       | v_t        | x           | int(11)     | 0              | NO          |            || tempdb       | v_t        | y           | varchar(32) | hello world... | NO          |            |+--------------+------------+-------------+-------------+----------------+-------------+------------+

 

转载地址:http://imtsa.baihongyu.com/

你可能感兴趣的文章
jQuery--百度百科
查看>>
Unity3D 之2D动画机
查看>>
基础知识系列☞闲言
查看>>
蓝牙Ibeacon室内定位和微信摇一摇周边原理分析
查看>>
架构设计:负载均衡层设计方案(7)——LVS + Keepalived + Nginx安装及配置
查看>>
virtualbox端口转发
查看>>
DiscuzX2.5 程序底层架构
查看>>
Jenkins_多项目构建(二):使用Maven聚集关系
查看>>
三大做空工具详解
查看>>
linux全方位掌握一个命令--思路比方法更重要
查看>>
[Flexbox] Use Flex to Scale Background Image
查看>>
【等待事件】序列等待事件总结(enq: SQ - contention、row cache lock、DFS lock handle和enq: SV - contention)...
查看>>
算法与数据结构(七) AOV网的拓扑排序(Swift版)
查看>>
maven pom.xml解释 (转)
查看>>
markdown to html
查看>>
Pspice仿真器
查看>>
ogg 、 Shareplex和DSG RealSync 对比
查看>>
NK3C程序配置
查看>>
webrtc中APM(AudioProcessing module)的使用2
查看>>
lunix的查看Tomcat目录下日志的快速操作
查看>>