Concept Flow - CREATE VIEW syntax
Write SELECT query
Use CREATE VIEW name AS
Database stores view definition
Querying view runs stored SELECT
Return result set as if table
You write a SELECT query, then create a view with that query. The database stores it. When you query the view, it runs the stored SELECT and returns results like a table.