How to Remove the 3rd highest salary person record from
table?
Answer Posted / manoj
delete from employee where sal = (select sal from (select sal from employee order by sal desc) where rownum = 3);
| Is This Answer Correct ? | 1 Yes | 3 No |
Post New Answer View All Answers
How to start instance with a minimal initialization parameter file?
Explain oracle 12c new features for developers?
How to rename an index in oracle?
How to establish administrator authentication to the server?
1) WIll all the user get the DEFAULT profile, if their current profile got deleted at any point of time? 2) What are the Situation we need to MOVE the TABLE between T.spaces? 3) What is the use of MOVING the TABLE between SCHEMA'S? 4) What are the Table Clause, Segment Clause and the Datafile Clause which will override each other? 5) Explain SORT_AREA_SIZE of Tempfile to make UNIFORM SIZE
What are the roles of dba?
what is insert all statement in sql
> CREATE OR REPLACE FUNCTION FACTORIAL_1(factstr varchar2 ) 2 RETURN NUMBER AS 3 new_str VARCHAR2(4000) := factstr||'*' ; 4 fact number := 1 ; 5 BEGIN 6 7 WHILE new_str IS NOT NULL 8 LOOP 9 fact := fact * TO_NUMBER(SUBSTR(new_str,1,INSTR(new_str,'*')-1)); 10 new_str := substr( new_str,INSTR(new_str,'*')+1); 11 END LOOP; 12 13 RETURN fact; 14 15 END; explanation Above program?
Explain the features of oracle?
What is a partition in oracle?
How to use like conditions in oracle?
What are the major difference between truncate and delete?
How to rename a tablespace in oracle?
What is a trace file and how is it created in oracle?
what's query optimization and without use of IN AND Exist can we get another way data from query