not_null_or_empty
description
Syntax:
BOOLEAN NOT_NULL_OR_EMPTY (VARCHAR str)
If str
is an empty or null string, this function will return false; otherwise, it will return true.
Example
MySQL [(none)]> select not_null_or_empty(null);
+-------------------------+
| not_null_or_empty(NULL) |
+-------------------------+
| 0 |
+-------------------------+
MySQL [(none)]> select not_null_or_empty("");
+-----------------------+
| not_null_or_empty('') |
+-----------------------+
| 0 |
+-----------------------+
MySQL [(none)]> select not_null_or_empty("a");
+------------------------+
| not_null_or_empty('a') |
+------------------------+
| 1 |
+------------------------+
Keywords
NOT_NULL_OR_EMPTY