MySQL MAKE_SET() function returns a null value when the bit's value is 1 and the first string is NULL. The following example will demonstrate this concept −
mysql> Select MAKE_SET(1, NULL,'A','B'); +---------------------------+ | MAKE_SET(1, NULL,'A','B') | +---------------------------+ | | +---------------------------+ 1 row in set (0.00 sec)
The above is the detailed content of What does the MySQL MAKE_SET() function return if the value of this bit is 1 and the first string is NULL?. For more information, please follow other related articles on the PHP Chinese website!