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

sqlserver中查询表字段的sql语句

时间:2017-12-12 15:11:10      阅读:187      评论:0      收藏:0      [点我收藏+]

标签:isnull   font   name   rom   null   arch   weight   2.x   arc   

sqlserver中的表信息字段信息这些东西也是放到系统表中的,以下sql语句用于查询某表的字段信息。

select t1.name table_name,t2.name col_name,t3.name+(+convert(varchar(200),t2.length)+) datatype,t2.isnullable from
sysobjects t1
join syscolumns t2 on t2.id=t1.id
join systypes t3 on t3.xtype=t2.xtype
where t1.name=table_name order by t2.colorder

 

finished

sqlserver中查询表字段的sql语句

标签:isnull   font   name   rom   null   arch   weight   2.x   arc   

原文地址:http://www.cnblogs.com/vanwoos/p/8027369.html

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