Answer Posted / purushotham
select level,max(sal)
from table
where level=3
connect by prior sal>sal
group by level
| Is This Answer Correct ? | 0 Yes | 6 No |
Post New Answer View All Answers
What is difference between rank () row_number () and dense_rank () in sql?
Why does sql need a server?
What is the importance of sqlcode and sqlerrm?
Why we use cross join?
What are different types of queries in sql?
What is a native sql query?
Is sql injection illegal?
Difference between global and parameter variables?
What are the conditions an underlying table must satisfy before a cursor can be used by a positioned update or delete statement? : Transact sql
Does oracle roll back the transaction on an error?
What are pl sql data types?
What is the difference between function and procedure in pl/sql?
First round ------------------- - Procedure - Packages - Views - Virtual tables - Can we use dcl with in function? - Joins and few scenarios - Triggers and its type - Pragma, type and its functionality - How to create db link in oracle - Materialized view - How to find duplicate values from table? - Cursor and its functionality - Write a script to display friday and its date from a entire year. - Exception Handling Second round ------------------------ Gave a scenario like. Need to write a function to perform. When user try to change a password. It must not be last five password and a given password can be combination of characters, symbols, upper and lower case.
What is program debugging?
how can you see all indexes defined for a table? : Sql dba