A table (t1) contains 1000 random integer values in the first column (col1). The random values range from 1 to 1000.
You execute this query:
SELECT col1 FROM t1 WHERE col1< 100
UNION -
SELECT col1 FROM t1 WHERE col1 BETWEEN 100 and 200
UNION ALL -
SELECT col1 FROM t1 WHERE col 1 >=900
What is the output?
Gruiou
4 years, 9 months agolorrazen
4 years, 11 months agoLara
5 years, 10 months ago