Loading lesson path
Concept visual
Start at both ends
❮ SQL Keywords
In MySQL and Oracle, a view can be updated with the
command. The following SQL adds the "City" column to the "Brazil Customers" view:
CREATE OR REPLACE VIEW [Brazil Customers] AS SELECT CustomerName, ContactName, City
WHERE Country = "Brazil";We can query the view above as follows:
SELECT * FROM [Brazil
Customers];❮ SQL Keywords