Example & Tutorial understanding programming in easy ways.

What is VIEW in SQL?

View in DBMS is the temporary copy of the table in the RAM.


How create a View?

Syntax:

CREATE VIEW view_name AS SELECT * FROM table_name;

Read More →