InterviewSolution
Saved Bookmarks
| 1. |
Which of these is also known as a virtual table?(a) SCHEMA(b) DATABASE(c) JOIN(d) VIEW |
|
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. |
|