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.
Clickable & Draggable!