Quick Ref.

CREATE VIEW

The table games shows the year and the city hosting the Olympic Games.
games
yr city
2004 Athens
2008 Beijing
The CREATE VIEW names a SELECT query. That query may be used as if it were a table in many contexts.
In this example the VIEW old_games shows those games before 2006.

Results
See also: