What is a view in SQL?

699 viewsSQLSQL
0

A view is a virtual table based on the result-set of an SQL statement. We can create
using create view syntax.

CREATE VIEW view_name AS
SELECT column_name(s)
FROM table_name
WHERE condition

Gautam Sarswat Changed status to publish January 11, 2023
Write your answer.

Posted

in

Tags:

Comments

Leave a Reply

A Tribute to Dilip Kumar