© 2025 by The Clinic. Powered and secured by Wix
Syntax:IS NOT boolean_valueTests a value against a boolean value, where boolean_value can be TRUE,FALSE, or UNKNOWN.
mysql> SELECT 1 IS NOT UNKNOWN, 0 IS NOT UNKNOWN, NULL IS NOT UNKNOWN; -> 1, 1, 0