ISNULL() checks if a value is NULL, returning TRUE if the value is NULL and FALSE otherwise. This function works with all data types and is essential for NULL value handling, data validation, and conditional logic in queries.
ISNULL(value)
ISNULL() returns a Boolean value (TRUE or FALSE)
ISNULL("123") = FALSE (non-null string)
ISNULL("ABC") = FALSE (non-null string)
ISNULL(NULL) = TRUE (null value)
ISNULL(0) = FALSE (non-null number)
ISNULL("") = FALSE (empty string is not null)
ISNULL(DATE(2025, 1, 1)) = FALSE (non-null date)
ISNULL(EMPTY_COLUMN) = TRUE (if column contains NULL)