InterviewSolution
Saved Bookmarks
| 1. |
How can a view refer to multiple tables?(a) UNION(b) JOIN(c) GROUP(d) SELECTI had been asked this question in an interview for internship.The query is from Storage Engine Configuration in division General MySQL Administration of MySQL |
|
Answer» RIGHT answer is (b) JOIN Best EXPLANATION: In MYSQL, a ‘View’ can refer to multiple tables. This makes it a lot simpler to EXECUTE the queries involving joins. When a selection is made from the view, the join is EXECUTED producing the results. |
|