Database Views
A View is a virtual table based on the result-set of an SQL statement.
It contains rows and columns, just like a real table. The fields in a view are fields from one or more real tables in the database.
CREATE VIEW [view_name] AS
SELECT column1, column2
FROM table_name
WHERE condition;
Task:
Create a view named expensive_items that selects all columns from products where price is greater than 100.