InterviewSolution
Saved Bookmarks
| 1. |
What Is An Oracle View? |
|
Answer» 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). 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). |
|