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

MySql 查询表结构信息

时间:2018-11-12 15:49:02      阅读:192      评论:0      收藏:0      [点我收藏+]

标签:orm   字段说明   ati   data   har   类型   end   case when   art   

select Column_name as 列名,is_nullable as 是否可为空,data_type as 数据类型,column_default as 默认值,case when column_key =‘PRI‘ then ‘主键‘ when column_key =‘UNI‘ then ‘唯一约束‘ when column_key =‘MUL‘ then ‘可以重复‘ else ‘‘ end as 列键,column_comment as 字段说明 from information_schema.columns
where table_schema = ‘datashar‘ #表所在数据库
and table_name = ‘departmentinfo‘ order by column_key desc ; #你要查的表

MySql 查询表结构信息

标签:orm   字段说明   ati   data   har   类型   end   case when   art   

原文地址:https://www.cnblogs.com/niuniu0108/p/9946583.html

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