Name Salary
Abc 50000
Abc 50000
xyz 20000
find the max salary using aggregate function?
Answer Posted / guest
select max(sal) from tab_name;
or
select * from tab_name where sal=(select max(sal) from
tab_name) and rownum<=1;
| Is This Answer Correct ? | 20 Yes | 0 No |
Post New Answer View All Answers
Is big data nosql?
Are left and right joins the same?
What is sql injection vulnerability?
What is lookup table in sql?
Define select, insert, create, delete, update, drop keywords
Is sql scripting language?
how to shutdown mysql server? : Sql dba
Why is pl sql used?
Does access use sql?
What is the difference between numeric and autonumber?
what are the differences between char and nchar? : Sql dba
Can triggers stop a dml statement from executing on a table?
Is sql procedural language?
What is mutating error in pl sql?
What kind of join is join?