sql server 查看表、视图、触发器、存储过程等组成sql查询语句1. 查看用户表2. 查看视图3. 查看表/视图字段
1. 查看用户表select name from sys.tablesselect name from sys.objects where type='U'select name from sysobjects where xtype='U' 其中type或xtype值:U = 用户表 S = 系统表 V = 视图 FN = 标量函数 TF = 表函数 P = 存储过程 ...