MSSql得到表的結構和欄位

老皆知發表於2014-04-11

得到資料庫中所有的表

select name from sysobjects where xtype='u' and name='{0}'

1.獲取表的基本欄位屬性

--獲取SqlServer中表結構 
SELECT syscolumns.name,systypes.name,syscolumns.isnullable,
syscolumns.length 
FROM syscolumns, systypes 
WHERE syscolumns.xusertype = systypes.xusertype 
AND syscolumns.id = object_id('你的表名')

執行效果

2.如果還想要獲取欄位的描述資訊則

複製程式碼
--獲取SqlServer中表結構 主鍵,及描述
declare @table_name as varchar(max)
set @table_name = '你的表名' 
select sys.columns.name, sys.types.name, sys.columns.max_length, sys.columns.is_nullable, 
  (
select count(*from sys.identity_columns where sys.identity_columns.object_id = sys.columns.object_id and sys.columns.column_id = sys.identity_columns.column_id) as is_identity ,
  (
select value from sys.extended_properties where sys.extended_properties.major_id = sys.columns.object_id and sys.extended_properties.minor_id = sys.columns.column_id) as description
  
from sys.columns, sys.tables, sys.types where sys.columns.object_id = sys.tables.object_id and sys.columns.system_type_id=sys.types.system_type_id and sys.tables.name=@table_name order by sys.columns.column_id

複製程式碼

執行效果

3.單獨查詢表的遞增欄位

--單獨查詢表遞增欄位
select [name] from syscolumns where 
id
=object_id(N'你的表名'and COLUMNPROPERTY(id,name,'IsIdentity')=1

執行效果

4.獲取表的主外來鍵

--獲取表主外來鍵約束
exec sp_helpconstraint   '你的表名' ;

執行效果

相關文章