首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > SQL Server >

SQLServer 中高速查询出用户表,系统表的sql语句

2012-07-04 
SQLServer 中快速查询出用户表,系统表的sql语句select * from sysobjects where? type U--查询用户表se

SQLServer 中快速查询出用户表,系统表的sql语句

select * from sysobjects where? type ='U'--查询用户表

select * from sysobjects where? type = 'v'--查询试图

?

select * from sysobjects where? type = 's'--查询系统表

热点排行