C# 中怎么样查询数据库的表名以及表的列名
1个回答
展开全部
--读取库中的所有表名
select name from sysobjects where xtype='u'
--读取指定表的所有列名
select name from syscolumns where id=(select max(id) from sysobjects where xtype='u' and name='表名')
select name from sysobjects where xtype='u'
--读取指定表的所有列名
select name from syscolumns where id=(select max(id) from sysobjects where xtype='u' and name='表名')
追问
这我看不懂 啊!name算是个列明不?那个sysobjects是表名?这些我得自己给值?
追答
你在运行上述SQL语句之前运行
use 你的数据库名!
懂了没有?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询