How can we find highest salary in employee table | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

How can we find highest salary in employee table

hhh

13th Nov 2017, 10:07 AM
Narsa reddy
Narsa reddy - avatar
2 Answers
+ 6
select max(salary) as salary from table; This query will get the maximum salary assuming the table contains a salary column
13th Nov 2017, 10:29 AM
Mohammed Hany
Mohammed Hany - avatar