Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

What is the result, when NULL is compared with NULL?

Answer Posted / 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



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the location of pre_defined_functions.

1208


What are the types of index in sql?

1118


Can we create table in function?

1017


what is a materialized view? : Sql dba

1126


how can we repair a mysql table? : Sql dba

1040


What do you understand by pl/sql cursors?

1148


Explain how to use transactions efficiently : transact sql

1017


What is the purpose of the sql select top clause?

1200


Which column in the user.triggers data dictionary view shows that the trigger is a pl/sql trigger?

1079


Is nosql relational?

999


What do you know by pl/sql cursors?

1164


How to use distinct and count in sql query? Explain

1080


Why is pl sql used?

1026


What are the string functions in sql?

1019


What is pessimistic concurrency control? : Transact sql

1132