top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

What special operators does Oracle provide for dealing with NULLs?

+3 votes
319 views
What special operators does Oracle provide for dealing with NULLs?
posted Nov 11, 2014 by Archana

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes

NVL - Converts a NULL to another specified value, as in:

my_var := NVL (your_var, 'Hello');

IS NULL and IS NOT NULL

You can use this syntax to check specificaly to see if a variable's value is
NULL or NOT NULL.

answer Nov 12, 2014 by Arun Gowda
...