sql server 查詢表結構
阿新 • • 發佈:2021-10-28
sql server 查詢表結構
--查詢表結構start SELECT 序號 = a.colorder,欄位名稱 = a.name,欄位描述 = f.value, 標識 = case when COLUMNPROPERTY( a.id,a.name,'IsIdentity') = 1 then '√' else '' end, 主鍵 = case when exists(SELECT 1 FROM sysobjects where xtype = 'PK' and parent_obj = a.id and name in ( SELECT name FROM sysindexes WHERE indid in( SELECT indid FROM sysindexkeys WHERE id = a.id AND colid = a.colid ))) then '√' else '' end, 型別 = b.name, 長度 = COLUMNPROPERTY(a.id,a.name,'PRECISION'), 允許空 = case when a.isnullable = 1 then '√' else '' end, 預設值 = isnull(e.text,'') FROM syscolumns a left join systypes b on a.xusertype = b.xusertype inner join sysobjects d on a.id = d.id and d.xtype = 'U' and d.name <> 'dtproperties' left join syscomments e on a.cdefault = e.id left join sys.extended_properties f on f.major_id = d.id and f.minor_id = a.colorder where d.name='表名' order by a.id,a.colorder --查詢表結構end