SELECT a.name AS 字段名,b.name AS 数据类型 FROM sys.columns a INNER JOIN sys.types b ON a.user_type_id=b.user_type_id WHERE object_id=object_id('表名')