Select from following answers:- from | group by | having |
- having | from | group by
- group by | from | having
- none of the above.
- All Above
From | group by | having is the correct order in select statement.
For Example:-
select id,max(sal) from employee_salary group by id having sal>10000;
Show Correct Answer
Asked In: Many Interviews |
Alert Moderator