declare @tablename varchar(50)
declare @vb char(1)


set @tablename='tempmain'
--set @vb='U' --表
set @vb='V'   --视图



select case when c.colid=1 then o.name else '' end 表名, 
  c.colid 顺序, 
  c.name 字段名, 
  t.name 字段类型, 
  
columnproperty(c.id,c.name,'PRECISION') 字段长度, 
  
isnull(c.Scale,'') 小数位,
  c.length 占用字节,
  
case when c.isnullable=1 then '' else '' end 可为空, 
  
case when c.colid in(select ik.colid
    
from sysindexes i, Sysindexkeys ik, sysobjects oo
    
where i.id=ik.id and i.indid=ik.indid
      
and i.name=oo.name and oo.xtype='PK' --主键
      and o.id=i.id 
  ) 
then '' else '' end 主键,
  
case when c.colid in(select ik.colid
    
from sysindexes i, Sysindexkeys ik
    
where i.id=ik.id and i.indid=ik.indid
      
and o.id=i.id and i.indid=1 --聚类索引
  ) then '' else '' end 聚类索引,
  
case when columnproperty( c.id, c.name,'IsIdentity')=1 then '' else '' end 自增长,
  
isnull(m.text,'') 默认值
from sysobjects o, syscolumns c, systypes t, syscomments m
where o.xtype=@vb
  
and o.name=@tablename
  
and o.id=c.id 
  
and c.xtype=t.xtype
  
and c.cdefault*=m.id
order by o.name, c.colid
获得单表或视图的结构。
SELECT TOP 100 PERCENT --a.id, 
      CASE WHEN a.colorder = 1 THEN d.name ELSE '' END AS 表名, 
      
CASE WHEN a.colorder = 1 THEN isnull(f.value, ''ELSE '' END AS 表说明, 
      a.colorder 
AS 字段序号, a.name AS 字段名, CASE WHEN COLUMNPROPERTY(a.id, 
      a.name, 
'IsIdentity'= 1 THEN '' ELSE '' END AS 标识, 
      
CASE WHEN EXISTS
          (
SELECT 1
         
FROM dbo.sysindexes si INNER JOIN
               dbo.sysindexkeys sik 
ON si.id = sik.id AND si.indid = sik.indid INNER JOIN
               dbo.syscolumns sc 
ON sc.id = sik.id AND sc.colid = sik.colid INNER JOIN
               dbo.sysobjects so 
ON so.name = si.name AND so.xtype = 'PK'
         
WHERE sc.id = a.id AND sc.colid = a.colid) THEN '' ELSE '' END AS 主键, 
      b.name 
AS 类型, a.length AS 长度, COLUMNPROPERTY(a.id, a.name, 'PRECISION'
      
AS 精度, ISNULL(COLUMNPROPERTY(a.id, a.name, 'Scale'), 0AS 小数位数, 
      
CASE WHEN a.isnullable = 1 THEN '' ELSE '' END AS 允许空, ISNULL(e.text''
      
AS 默认值, ISNULL(g.[value]''AS 字段说明, d.crdate AS 创建时间, 
      
CASE WHEN a.colorder = 1 THEN d.refdate ELSE NULL END AS 更改时间
FROM dbo.syscolumns a LEFT OUTER JOIN
      dbo.systypes b 
ON a.xtype = b.xusertype INNER JOIN
      dbo.sysobjects d 
ON a.id = d.id AND d.xtype = 'U' AND 
      d.status 
>= 0 LEFT OUTER JOIN
      dbo.syscomments e 
ON a.cdefault = e.id LEFT OUTER JOIN
      dbo.sysproperties g 
ON a.id = g.id AND a.colid = g.smallid AND 
      g.name 
= 'MS_Description' LEFT OUTER JOIN
      dbo.sysproperties f 
ON d.id = f.id AND f.smallid = 0 AND 
      f.name 
= 'MS_Description'
ORDER BY d.name, a.colorder
得到某个数据库中所有表的结构。
posted on 2008-03-10 13:07  nerozhang  阅读(476)  评论(3编辑  收藏  举报