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
Leave a Reply