InterviewSolution
Saved Bookmarks
| 1. |
Find odd one out?(a) GROUP BY(b) DESC(c) ASC(d) ORDER BYThis question was addressed to me by my school teacher while I was bunking the class.The above asked question is from The order by Clauses in section Select Statement of MySQL |
|
Answer» RIGHT answer is (a) GROUP BY Best explanation: “ORDER BY”, “DESC”, “ASC” are related to SORTING whereas “GROUP BY” is not related to sorting. |
|