InterviewSolution
Saved Bookmarks
| 1. |
A view can refer to multiple tables via __________(a) UNION(b) JOIN(c) GROUP(d) SELECT |
|
Answer» Right option 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. |
|