Answer Posted / shalya
UPDATE <table name> SET <column name>=<new value> WHERE
<condition>;
| Is This Answer Correct ? | 23 Yes | 2 No |
Post New Answer View All Answers
Does facebook use oracle?
Why does oracle 9i treat an empty string as null?
How to insert multiple rows with one insert statement in oracle?
What is the data type of dual table?
Is truncate autocommit in oracle?
What happens in oracle commit?
Which environment variables are absolutely critical in order to run the OUI?
> 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?
query optmization techniques and quwry analyser+projects+ppts
How to use subqueries with the in operator using oracle?
Is oracle a language?
What is bulk copy or bcp in oracle?
What is translate in oracle?
What is raw datatype in oracle?
How to assign values to variables?