To combine multiple retrievals, which keyword is used to write several SELECT statements between them?

To combine multiple retrievals, which keyword is used to write several SELECT statements between them? Correct Answer UNION

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.

Related Questions