1.

If emp_id contain the following set {1, 2, 3, 4, 1, 1}, what will be the output on execution of the given query?
SELECT id
FROM Student
ORDER BY id;

A. {1, 2, 3, 4, 1, 1}
B. {1, 1, 2, 3, 4, 1}
C. {1, 1, 1, 2, 3, 4}
D. All of above
E. None of these
Answer» D. All of above


Discussion

No Comment Found

Related MCQs