SQL CREATE OR REPLACE VIEW 关键字
CREATE OR REPLACE VIEW
CREATE OR REPLACE VIEW
命令更新视图。
以下 SQL 将 "City" 列添加到 "Brazil Customers" 视图:
实例
CREATE OR REPLACE VIEW [Brazil Customers] AS
SELECT CustomerName, ContactName, City
FROM Customers
WHERE Country = "Brazil";
亲自试一试 »
查询视图
我们可以这样查询上面的视图: