sql server2008怎么实现查询某个数据库中所有的表名,以及相应的表字段结构。
比如数据库名dbtest,里面有表table1,table2,table3,查询出来的第一个结果就是列出这些表的列表出来;比如table1中有字段col1col2col3...
比如数据库名dbtest,里面有表table1,table2,table3 ,查询出来的第一个结果就是列出这些表的列表出来;
比如table1中有字段col1 col2 col3,table2中有字段col1 col2,则列出列表 展开
比如table1中有字段col1 col2 col3,table2中有字段col1 col2,则列出列表 展开
推荐于2017-10-12
展开全部
你是要写代码生成器么?
--这是查表的数量
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
--这是查表的数量
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
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询