If the string is all NULL, the MySQL MAKE_SET() function will not return anything. The following example will demonstrate it -
mysql> Select MAKE_SET(2, NULL,NULL,NULL); +-----------------------------+ | MAKE_SET(2, NULL,NULL,NULL) | +-----------------------------+ | | +-----------------------------+ 1 row in set (0.00 sec)
The above is the detailed content of What does the MySQL MAKE_SET() function return if all positions in the string are NULL?. For more information, please follow other related articles on the PHP Chinese website!