Discussion :: SQL Basics
-
Let the statement
SELECT column1 FROM myTable;
return 10 rows. The statement
SELECT ALL column1 FROM myTable;
will return
Answer : Option C
Explanation :
ALL are optional. Its presence or absence doesn't change the output. Unlike DISTINCT, it allows duplicates in the output.
Be The First To Comment