What is the result, when NULL is compared with NULL?
Answer Posted / 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 |
Post New Answer View All Answers
Why do we use joins in sql?
what are the advantages and disadvantages of cascading style sheets? : Sql dba
Is merge a dml statement?
What is pragma in sql?
i have a column which may contain this kind of value: 123*67_80,12*8889_5,34*8_874 ,12*7_7 (can contain space before a comma, and this string length can be anything) now i want to split this value into two column like: column1: 123*67,12*8889,34*8,12*7 column2: 80,5,874,7 use function for this
How do you go back in sql?
What is orm in sql?
How much does sqlite cost?
how to include numeric values in sql statements? : Sql dba
What is foreign key sql?
What is tuple in sql?
What is right join in sql?
How bulk collect improves performance?
How does postgresql compare to mysql?
What is the difference between instead of trigger and after trigger?