Google News
logo
SQL - Interview Questions
What is View in SQL?
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
Advertisement