SQL数据库查询列的类型及长度

匿名 (未验证) 提交于 2019-12-02 22:56:40
1 select a.name as [column],b.name,a.length as type 2 from syscolumns a,systypes b 3 where a.id=object_id('表名') and a.xtype=b.xtype
select syscolumns.name as 字段名,systypes.name as 数据类型,syscolumns.length as 长度  from syscolumns  join systypes on systypes.xtype=syscolumns.xtype where id=(select id from sysobjects where  name='表名')

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!