0 votes
in Sql by
What is View in SQL and what is the use of it?

1 Answer

0 votes
by
A View can be defined as a virtual table that contains rows and columns with fields from one or more tables.

Syntax:

CREATE VIEW view_name AS

SELECT column_name(s)

FROM table_name

WHERE condition

Related questions

0 votes
0 votes
0 votes
asked Nov 7, 2021 in Sql by rajeshsharma
0 votes
asked Jul 10, 2020 in Sql by Robindeniel
...