Answer Posted / ajeet singh
For delete any record from table :-
delete form <tablename> where <condition>;
For delete any column fromm table :-
alter table <tablename>
drop column <columnname>;
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
What is a package in oracle?
How to drop a tablespace?
> 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?
How do we get field detail of a table?
List the types of joins used in writing subqueries?
what is the difference between substr and instr function in oracle?
What is the dynamic sql in oracle?
What is an oracle cursor variable?
How to open and close an explicit cursor in oracle?
What do you mean by merge in oracle and how can you merge two tables?
is there a tool to trace queries, like profiler for sql server?
definition of cluster and non-clustered index?
How to create a table index?
In which language oracle has been developed?
Explain what are the uses of rollback segment?