SQL语言检索表中的字段名

SQL SERVER 

查看所有表名: 
select name from sysobjects where type='U'   //显示类型为用户的所有表名

查询表的所有字段名: 
Select name from syscolumns Where ID=OBJECT_ID('表名')   //显示'表名'里所有的字段名

select * from information_schema.tables 
select * from information_schema.views 
select * from information_schema.columns

posted @ 2011-02-10 17:46  风干的记忆  阅读(345)  评论(0编辑  收藏  举报