0 votes
in Sql by
What is a View?

1 Answer

0 votes
by

A view in SQL is a virtual table based on the result-set of an SQL statement. A view contains rows and columns, just like a real table. The fields in a view are fields from one or more real tables in the database.

...