2008年2月25日

SQL中的sysobjects与syscolumns

摘要: 查看所有表名: select name from sysobjects where type='U' 查询表的所有字段名: Select name from syscolumns Where ID=OBJECT_ID('表名') select * from information_schema.tables select * from information_schema.vi... 阅读全文

posted @ 2008-02-25 14:10 Neo0820 阅读(2038) 评论(0) 推荐(0)

导航