Answer Posted / kamala k n
select * from (select ename,sal,rank() over(order by sal desc) as ranks from emp)
where ranks=2;
Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Can you create a synonym without having a table?
Explain the features of oracle?
Explain drop constraint oracle?
How to define a data source name (dsn) in odbc manager?
How to import one table back from a dump file?
What privilege is needed for a user to query tables in another schema?
Is oracle a programming language?
Can a parameter be passed to a cursor?
what is the need of indexing topic in oracle? where do we use in a Java project? any other option other than using this to get the same result where we use indexing ?
What is an Oracle Instance?
What is java oracle used for?
How to best split csv strings in oracle 9i?
Explain the use of rows option in imp command.
Name the three major set of files on disk that compose a database in Oracle?
A table t is there.If you perform insert ,update and delete then the trigger will fire.What is the minimum no of trigger required for a table.