- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
What MySQL MAKE_SET() function returns if the value of the bit is 1 and the first string is NULL?
MySQL MAKE_SET() function returns nothing if the value of the bit is 1 and the first string is NULL. Following example will exhibit this concept −
Example
mysql> Select MAKE_SET(1, NULL,'A','B'); +---------------------------+ | MAKE_SET(1, NULL,'A','B') | +---------------------------+ | | +---------------------------+ 1 row in set (0.00 sec)
- Related Articles
- When MySQL MAKE_SET() function returns NULL?
- What MySQL returns if the first argument of INTERVAL() function is NULL?
- What MySQL MAKE_SET() function returns if there are all NULL at the place of strings?
- What MySQL returns if the search string, provided in FIELD() function, is NULL?
- What MySQL returns if the argument of QUOTE() function is NULL?
- What MySQL EXPORT_SET() function returns if any of the argument is NULL?
- What is MySQL MAKE_SET() function?
- What MySQL COALESCE() function returns if it has a blank, but not NULL, as the first argument?
- MySQL query that returns a specific string if column is null?
- What MySQL returns if we pass column name, containing a NULL value, as one of the arguments of CONCAT() function?
- What MySQL COALESCE() function returns if all the arguments provided to it are NULL?
- What MySQL returns if the list of strings, provided as argument in FIELD() function, are NULL?
- When MySQL LOCATE() function returns NULL as the output?
- What MySQL returns if the search string is not in the list of strings provided as argument in FIELD() function?
- What MySQL ASCII() function returns if I will provide NULL to it?

Advertisements