what is null value?

Answer Posted / anilchauhan85

null value means null it it not equal 0 or space.
if we add,delete,subtract in null then return null.
ex.
1+2+null=null

Is This Answer Correct ?    4 Yes 3 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How to import one table back from a dump file?

597


6. Display the client name and order date for all orders using the traditional method.

1753


> 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?

1571


What is an oracle transaction?

588


What is index in Oracle?

594






Difference between oracle's plus (+) notation and ansi join notation?

580


How to define a variable of a specific record type?

614


what are actual and formal parameters?

596


What is an oracle?

581


what is normalisation?what are its uses?

1764


What are the ansi data types supported in oracle?

522


Where is the export dump file located?

575


How to convert characters to dates in oracle?

563


How are extents allocated to a segment?

582


An automatic job running via DBMS_JOB has failedKnowing only that its failed, how do you approach troubleshooting this issue?

1624