0 votes
in Sql by
What is SQL View?

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
asked Nov 7, 2021 in Sql by rajeshsharma
0 votes
0 votes
asked Aug 19, 2023 in Spark Sql by GeorgeBell
...