欢迎光临
我们一直在努力

读出sql表结构-ASP教程,ASP应用

建站超值云服务器,限时71元/月

select object_name(c.id) as 表名
 ,c.name as 字段名
 ,t.name 数据类型
        ,c.length 长度
 ,c.prec as 精度
 ,p.value as 字段说明
 ,m.text as 默认值
        ,case when c.status=0x80 then 1 else 0 end 标识
        ,c.iscomputed 是否已计算该列的标志
        ,c.isnullable 是否允许空值
        ,c.isoutparam 是否输出参数 
from    syscolumns c
        inner join systypes t on c.xusertype=t.xusertype
 left join sysproperties p on c.id=p.id and c.colid = p.smallid
 left join syscomments m on c.cdefault=m.id
where   objectproperty(c.id,isusertable)=1 and object_name(c.id)=dat_deptinfo

赞(0)
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » 读出sql表结构-ASP教程,ASP应用
分享到: 更多 (0)