Code has been added to clipboard!

Syntax of SQL VIEW

Example
CREATE VIEW v_name AS
SELECT col1, col2, ...
FROM tbl_name
WHERE condition;