InterviewSolution
Saved Bookmarks
| 1. |
Which of these is also known as a virtual table?(a) SCHEMA(b) DATABASE(c) JOIN(d) VIEWThis question was addressed to me during a job interview.I would like to ask this question from Using Views in division Using SQL to Manage Data of MySQL |
|
Answer» CORRECT ANSWER is (d) VIEW The EXPLANATION: In MySQL, a ‘View’ is also called a virtual table. It does not contain any data but only appears as a table. It is an alternative WAY to show or describe a table similar to the original table. |
|