To combine multiple retrievals, we write several SELECT statements and put the keyword between them. What is the keyword?
To combine multiple retrievals, we write several SELECT statements and put the keyword between them. What is the keyword? 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.
মোঃ আরিফুল ইসলাম
Feb 20, 2025