October 2002
Beginner
864 pages
18h 41m
English
| Q1: | How can a view contain data but require no physical storage? |
| A1: | Actually, a view does not contain data at all. A view is a virtual table or a predefined query. The only space required for a view is for the view definition. Remember that a view is defined by a SELECT statement. |
| Q2: | What happens to a view if a table on which a view is dependent is dropped? |
| A2: | The view will become invalid since the underlying data that defines the view no longer exists. |
Read now
Unlock full access