首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > SQL Server >

sql查寻表中列的属性

2013-04-12 
sql查找表中列的属性select a.name columnname,c.name as typename, case when a.is_nullable 0 then N

sql查找表中列的属性


select a.name columnname,c.name as typename, 
case when a.is_nullable = 0 then 'Not Null' else 'Null' end as nullable,
a.*from sys.columns a ,
 sys.objects b, 
 sys.types c
 where a.object_id = b.object_id 
 and b.name='Product'and 
 a.system_type_id=c.system_type_id order by a.column_id

热点排行