sql视图(views)

视图是可视化的表

在sql中,视图是基于sql语句得结果集的可视化的表。

视图包含行和列,就像一个真实的表(视图中的字段一个或多个数据库中的真实表的)

可以向视图中添加sql函数,where以及join语句,也可以呈现数据来自某个单一的表一样。

SQL CREATE VIEW 语法

create view view_name as

select column _name(s)

from table_name

where condition
注释:视图总是显示最新的数据!每当用户查询数据视图时,数据库引擎通过使用视图的sql语句重建数据。

SQL CREATE VIEW 实例

视图A会从“products”表列出所有正在使用的产品

create view A as
select productId,productName
from products
where discontinue=No

查询上面的视图:

select * from [A]

视图B选取表“Products”表中所有单位价格高于平均价格的产品:

create view B as
select ProductName,Untiprice
from products
where unitprice>(select AVG(Unitprice) from products)

查询上面的视图:

select * from [B]

C视图计算在1997年每个种类的销售总数

create VIEWE [C] AS
SELECT DISTINCT CategoryName,Sum(Productsales) as categorySales
From [d] 
group by CategoryName

查询上面的视图

select * from [c]

sql 更新视图

sql create replace view语法

create view [D] as
select ProdectID,ProductName,Category
from products
Where Discontinued=No

sql 撤销视图

sql drop view 语法

drop view view_name

你可能感兴趣的:(数据库)