SQL Server查询表结构语句
摘要:
--1:获取当前数据库中的所有用户表 www.2cto.com select Name from sysobjects where xtype='u' and status>=0--2:获取某一个表的所有字段select name from syscolumns where id=object_id('表名')--3:查看与某一个表相关的视图、存储过程、函数select a.* from sysobjects a, syscomments b where a.id = b.id and b.text like '%表名%'--4:查看当前数 阅读全文
posted @ 2013-11-14 16:07 陈惟鲜的博客 阅读(671) 评论(0) 推荐(0) 编辑