Loading lesson path
Concept visual
Start at both ends
❮ SQL Keywords
command creates a view. A view is a virtual table based on the result set of an SQL statement. The following SQL creates a view that selects all customers from Brazil:
CREATE VIEW [Brazil Customers] AS
CustomerName, ContactName
Country = "Brazil";We can query the view above as follows:
SELECT * FROM [Brazil Customers];❮ SQL Keywords