real time applications of nullif?

Answers were Sorted based on User's Feedback



real time applications of nullif?..

Answer / babu

nullif basically allows you to compare 2 expressions of
same datatype and return null if both are equal. else it
would return the first expression.eg:
nullif(10,10) returns null

Is This Answer Correct ?    6 Yes 0 No

real time applications of nullif?..

Answer / rasmita basantia

The NULLIF function takes two arguments. If the two
arguments are equal, then NULL is returned. Otherwise, the
first argument is returned.

Is This Answer Correct ?    2 Yes 0 No

real time applications of nullif?..

Answer / avi007

In Oracle/PLSQL, the NULLIF function compares expr1 and
expr2. If expr1 and expr2 are equal, the NULLIF function
returns NULL. Otherwise, it returns expr1.

The syntax for the NULLIF function is:

NULLIF( expr1, expr2 )

expr1 and expr2 must be either numeric values or values
that are of the same datatype.

For example:

NULLIF(12, 12) would return NULL
NULLIF(12, 13) would return 12
NULLIF('apples', 'apples') would return NULL
NULLIF('apples', 'oranges') would return 'apples'
NULLIF(NULL, 12) would return an ORA-00932 error because
expr1 can not be the literal NULL

Is This Answer Correct ?    2 Yes 0 No

Post New Answer

More SQL PLSQL Interview Questions

Does a user_objects view have an entry for a trigger?

0 Answers  


What does an inner join do?

0 Answers  


Does a join table need a primary key?

0 Answers  


how to create a database in oracle?please gve anser with example

1 Answers  


Can we have two clustered index on a table?

0 Answers  






what is a trigger in mysql? Define different types of trigger. : Sql dba

0 Answers  


what is cross join? : Sql dba

0 Answers  


Is sqlite thread safe?

0 Answers  


What is cross join example?

0 Answers  


What is difference between TRUNCATE & DELETE?

16 Answers   Ahn Infotech, CitiGroup, ICICI, PreVator, Saama Tech, SkyTech, TCS,


What are keys in sql?

0 Answers  


What is bulk collect in pl sql?

0 Answers  


Categories