sql server2008怎么实现查询某个数据库中所有的表名,以及相应的表字段结构。

比如数据库名dbtest,里面有表table1,table2,table3 ,查询出来的第一个结果就是列出这些表的列表出来;
比如table1中有字段col1 col2 col3,table2中有字段col1 col2,则列出列表

你是要写代码生成器么?
--这是查表的数量
Select [name] from sysObjects Where xtype='U'and [name]<>'dtproperties' Order By [name]

--得到数据库中所有用户视图
Select [name] From sysObjects Where xtype='V' And [name]<>'syssegments' And [name]<>'sysconstraints' Order By [name]

--获得指定表中所有的列
Select
c.name As ColumnName,
t.name As TypeName
From syscolumns c, systypes t, sysobjects o
Where c.xtype = t.xusertype
And c.id = o.id
And o.name = 'Book'
Order By c.colorder
温馨提示:内容为网友见解,仅供参考
无其他回答
相似回答