Manuals/calci/IFNULL

Revision as of 13:55, 11 March 2019 by Devika (talk | contribs) (→‎Examples)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
IFNULL (Value,Default)


Where

  • and
    • IFNULL() used to returned the given values according to the Null values.

Description

IFNULL (Value,Default)

  •   and   are any two values.This function takes two arguments.
  • If the first argument is not NULL, the function returns the first argument. Otherwise, the second argument is returned.
  • This function is commonly used to replace NULL value with another value.

Examples

  1. IFNULL(90,3) = 90
  2. IFNULL(#,54)= 54
  3. IFNULL("@",1) = @

Related Videos

Null

See Also


References