how to find the second highest salary from emp table?
Answer Posted / sagar padekar
select * from bill_gen
where total_payable< (select max(total_payable) from
bill_gen) order by total_payable desc limit 1;
hey please refer total_payable as salary amount
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What are all ddl commands?
what is sp_pkeys? : Transact sql
What is the primary use of normalization?
What is the usage of distinct keyword?
What is restrict in sql?
How do you change a value in sql?
Enlist the characteristics of pl/sql?
What is null in pl/sql?
Is left join faster than join?
Can you load data into multiple tables at once? : aql loader
How many databases can sql express handle?
What is pl sql block structure?
What is a column in a table?
How do I write a sql query in pgadmin 4?
How do I partition a table in sql?