how to find the second highest salary from emp table?
Answer Posted / ramu
selectename,sal from (select ename,sal from emp order by sal
desc) where rownum<=5;
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
How do I enable sql encryption?
What is use of term?
Is ms sql traffic encrypted?
what is the difference between delete and truncate commands? : Sql dba
how to check myisam tables for errors? : Sql dba
What is pl sql architecture?
Is join an inner join?
Can variables be used in sql statements?
Is sql database free?
Do foreign keys improve performance?
how to create a new table by selecting rows from another table in mysql? : Sql dba
What is scalar data type in pl sql?
What is difference between stored procedure and trigger?
Which is better join or inner query?
Define the select into statement.