+ 1
how can i get the salary according to rank and arrange the salary into the ascending order
8 odpowiedzi
+ 1
select salary from table group by rank order by asc
0
use group by
0
how can get max salary
0
select salary from tablename
orderby salary desc
this will give you result of hhighest salary drawn first to the lowest salary drawn
0
how can get top salary
0
To get max salary
select max(salary) from tablename
0
SELECT salary FROM salary_table ORDER BY asc
0
select max (salary),rank from salary_table groupby rank