InterviewSolution
Saved Bookmarks
| 1. |
What Is A View ? |
|
Answer» A view is a VIRTUAL table. Every view has a Query ATTACHED to it. (The Query is a SELECT statement that identifies the columns and rows of the table(s) the view USES.) A view is a virtual table. Every view has a Query attached to it. (The Query is a SELECT statement that identifies the columns and rows of the table(s) the view uses.) |
|