InterviewSolution
Saved Bookmarks
| 1. |
To combine multiple retrievals, which keyword is used to write several SELECT statements between them?(a) COMBINE(b) CONCAT(c) JOIN(d) UNION |
|
Answer» Correct option is (d) UNION Best explanation: The ‘UNION’ operator is used for combining the results of various ‘SELECT’ queries into one. For example, ‘SELECT a FROM table1 UNION SELECT a FROM table2;’ produces the results from tables table1 concatenated with that of table2. |
|