摘要: SQL SERVER查看所有表名:select name from sysobjects where type='U'查询表的所有字段名:Select name from syscolumns Where ID=OBJECT_ID('表名')select * from information_schema.tablesselect * from information_schema.viewsselect * from information_schema.columnsACCESS查看所有表名:select name from MSysObjects wher 阅读全文
posted @ 2011-10-27 18:34 lanmiao 阅读(309) 评论(0) 推荐(0) 编辑