Discussion :: MySQL Database MCQs
-
If emp_id contain the following set {-1, -2, 2, 3, -3, 1}, what will be the output on execution of the given query?SELECT emp_idFROM personORDER BY emp_id;
Answer : Option A
Explanation :
"ORDER BY clause sort the emp_id in the result set.
Be The First To Comment