日期:2014-05-18  浏览次数:20461 次

sql获取表的所有列名怎么弄啊?
sql语言怎么写
谢谢

------解决方案--------------------
--读取库中的所有表名
select name from sysobjects where xtype='u'

--读取指定表的所有列名
select name from syscolumns where id=(select max(id) from sysobjects where xtype='u' and name='表名')

转换一下
------解决方案--------------------
select * from syscolumns where id=OBJECT_ID('sysColumns')