how to find the second highest salary from emp table?
Answer Posted / bharat puri
select top 2 (salary) from emp
order by salary desc
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Why do we go for stored procedures?
How to run sql*plus commands in sql developer?
Write the command to remove all players named sachin from the players table.
How many types of tables are there?
Can dml statements be used in pl/sql?
Explain the advantages and disadvantages of stored procedure?
What is varray in pl sql?
What are the commands used in sql?
how to run 'mysql' commands from a batch file? : Sql dba
Explain spool.
what does it mean to have quoted_identifier on? What are the implications of having it off? : Sql dba
how to increment dates by 1 in mysql? : Sql dba
Explain the order of sql statement execution?
What is difference between stored function and application function?
Which sql statement is used to return only different values?