huangbg
复制代码
--查询表结构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
复制代码

 

分类:

技术点:

相关文章:

  • 2022-01-27
  • 2022-12-23
  • 2022-12-23
  • 2021-09-16
  • 2021-07-05
  • 2022-01-13
猜你喜欢
  • 2021-05-27
  • 2022-12-23
  • 2021-11-22
  • 2021-05-18
  • 2022-01-08
  • 2021-12-07
  • 2022-12-23
相关资源
相似解决方案