SQL CREATE VIEW 关键字

CREATE VIEW

CREATE VIEW 命令创建一个视图。

视图是基于 SQL 语句结果集的虚拟表。

以下 SQL 创建了一个视图,用于选择来自巴西的所有客户:

实例
  1. CREATE VIEW [Brazil Customers] AS
  2. SELECT CustomerName, ContactName
  3. FROM Customers
  4. WHERE Country = "Brazil";

Query The View

我们可以按如下方式查询上述视图:

实例
  1. SELECT * FROM [Brazil Customers];

分类导航