SQL VIEW 关键字
CREATE VIEW
在 SQL 中,视图是基于 SQL 语句结果集的虚拟表。
CREATE VIEW
命令创建一个视图。
以下 SQL 创建一个视图,用于选择来自巴西的所有客户:
实例
CREATE VIEW [Brazil
Customers] AS
SELECT
CustomerName, ContactName
FROM Customers
WHERE
Country = "Brazil";
亲自试一试 »
查询视图
我们可以这样查询上面的视图:
创建或替换视图
CREATE OR REPLACE VIEW
命令更新视图。
以下 SQL 将 "City" 列添加到 "Brazil Customers" 视图:
实例
CREATE OR REPLACE VIEW [Brazil Customers] AS
SELECT CustomerName, ContactName, City
FROM Customers
WHERE Country = "Brazil";
亲自试一试 »
下拉视图
DROP VIEW
命令删除视图。
以下 SQL 删除 "Brazil Customers" 视图: