Name Salary
Abc 50000
Abc 50000
xyz 20000
find the max salary using aggregate function?
Answer Posted / prashant
select max(salary) from
(select distinct(salary) from ABC)
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
what is the difference between cluster and non cluster index? : Sql dba
How to change sql*plus system settings?
What is difference between group by and partition by?
How to install oracle sql developer?
Is pl sql a programming language?
What is the maximum size of sqlite database?
Explain the difference between 'between' & 'and' operators in sql
what are the types of join and explain each? : Sql dba
what is a record in a database ? : Sql dba
How can I get the number of records affected by a stored procedure?
Is it possible to pass parameters to triggers?
Does sql*plus also have a pl/sql engine?
What is trigger point?
explain access control lists. : Sql dba
What does partition by mean in sql?