- 
					 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;
- 
                        - {1, 2, 3, 4, 1, 1}
- {1, 1, 2, 3, 4, 1}
- {1, 1, 1, 2, 3, 4}
- All of above
- None of these
 
Correct Option: C
“ORDER BY” clause sort the emp_id in the result set.
 
	