What is the result, when NULL is compared with NULL?
Answers were Sorted based on User's Feedback
Answer / ashu_deepu
2 NULL value can not b equal.
i just want to remind some imp. point about primary key.
d condition is
1) not null n
2) unique.
since 2 null value r unique dats why we require the 1st point of not null.
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / nhajare
Hi,
If you comapare null=null then it return 0 rows selected.
Check the result of this query...
select * from table_name where null=null;
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / sandeep kumar
select * from dual where null=null
no row return
| Is This Answer Correct ? | 1 Yes | 0 No |
Decode will return true if we compare null to null value.
select decode(commission_pct,null,0) from employees
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / divi
Null is not equal to Null
Nor
Null is equal to Null
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / sureka
set serveroutput on;
DECLARE
D INTEGER :=NULL;
E INTEGER :=NULL;
BEGIN
IF (D = E) THEN
dbms_output.put_line('PASS');
ELSIF (D <> E) THEN
dbms_output.put_line('FAIL');
ELSE
dbms_output.put_line('NA');
END IF;
END;
will return NA
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / archana
begin
if null is null then
dbms_output.put_line('null');
else
dbms_output.put_line('not null');
end if
end;
now it will return null
it is recommended to use 'is' with null not ' ='
| Is This Answer Correct ? | 0 Yes | 0 No |
DECLARE
v1 NUMBER;
v2 NUMBER;
BEGIN
IF v1 = v2
THEN
DBMS_OUTPUT.put_line ('Null comapred successfully');
ELSE
DBMS_OUTPUT.put_line ('oops u have to use ISNULL opeartor');
END IF;
END;
output : oops u have to use ISNULL opeartor
| Is This Answer Correct ? | 0 Yes | 0 No |
What is the difference between cross join and natural join?
What is the use of & in pl sql?
what is the difference between sql and t-sql? : Transact sql
Difference between SUBSTR and INSTR?
What is difference between hql and native sql?
using subquery how can i calculate working days in a month?
What is the difference between sql and mysql?
What is pl sql collection?
Explain the structure of pl/sql in brief.
Authentication mechanisms in Sql Server ?
there are 2 variables called x and y ,x contains 1,2 and y contains 3,4 we have to swap the values from x to y and y to x with out using dummy variables and it can be done only by using a single statement ? how?
what is cross join? : Sql dba
Oracle (3259)
SQL Server (4518)
MS Access (429)
MySQL (1402)
Postgre (483)
Sybase (267)
DB Architecture (141)
DB Administration (291)
DB Development (113)
SQL PLSQL (3330)
MongoDB (502)
IBM Informix (50)
Neo4j (82)
InfluxDB (0)
Apache CouchDB (44)
Firebird (5)
Database Management (1411)
Databases AllOther (288)