View

A view is a virtual table based on the result-set of an SQL statement. .

CREATE VIEW view_name AS
SELECT column1, column2, ...
FROM table_name
WHERE condition;

You can create a view using the CREATE VIEW statement.

View — Structure map

Clickable & Draggable!

View — Related pages: