四、SQLSERVER视图

SQL Server 系统视图

参考:https://www.cnblogs.com/littlewrong/p/9061848.html

 

自定义视图

参考:https://www.yiibai.com/sqlserver/sql-server-views.html#article-start

1、创建视图

CREATE VIEW ViewName

     AS

      SELECT col1,col2

      FROM TabName

GO

 

2、删除视图

DROP VIEW ViewName

posted @ 2021-11-20 11:10  microsoft-zhcn  阅读(32)  评论(0编辑  收藏  举报