Difference between primary key and unique key ?
Answer Posted / pandiyan
Primary key doesnot allow null value but unique key allows
null value.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Difference between oracle's plus (+) notation and ansi join notation?
what are actual and formal parameters?
How to delete multiple rows from a table in oracle?
How to create a new user account in oracle?
What is rich query?
What will be the syntax to find current date and time in format "yyyy-mm-dd"?
what is a Nested Loop join?
I have a database backup file in .db (ext) form how to conver it into .dmp (ext.) for oracle database
Explain the truncate in oracle?
How do I learn what codesets are available in oracle?
11. Display the client number and name and the client number and name of the person who referred that client.
What is blob data type in oracle?
What is transaction control statement and how many types of transaction control statement in Oracle?
> 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 use of Merge statement in oracle 11g