Saved Bookmarks
| 1. |
3. What will be the order of sorting in thegiven query?SELECT emp_id, emp_nameFROM personORDER BY emp_id, emp_name;(a) Firstly on emp_id and then onemp_name(b) Firstly on emp_name and then onemp_id(c) Firstly on emp_id but not onemp_name(d) None of the mentionedhelp! |
| Answer» | |