InterviewSolution
Saved Bookmarks
| 1. |
Find odd one out?(a) GROUP BY(b) DESC(c) ASC(d) ORDER BY |
|
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. |
|