查询数据库的所有表,字段

查询所有的数据库
1
select [name] from [sysdatabases] order by [name]
 
查询一个数据库中的所有表『 [type] = 'u' 是用户表,[type] = 's'是系统表』
1
select [id], [name] from [sysobjects] where [type] = 'u'
 
根据上个语句的查询结果然后再查询一个表中的所有字段
 
1
select [name] from [syscolumns] where [id] = 1931153925

 

posted @ 2016-09-29 17:11  Vincent_void  阅读(728)  评论(0编辑  收藏  举报