(1)查看视图的数据(连接查询方法/普通方法)
连接查询
select * from sysobjects,syscolumns
where sysobjects.name='视图名'
and sysobjects.xtype='V'
and sysobjects.id=syscolumns.id
普通查询
select * from sys.views where name='视图名'
或
select * from sysobjects where name='视图名' and xtype='V'
或
select * from syscolumns where id ='视图id'//这个方法要已知id才能查
(2)最简单的查看视图结构方法
sp_help 视图名
(3)最简单的查看视图创建代码
sp_helptext 视图名