C-Sharp | Java | Python | Swift | GO | WPF | Ruby | Scala | F# | JavaScript | SQL | PHP | Angular | HTML
MySQL MAKE_SET() FunctionMAKE_SET(bits,str1,str2,...) is a Sring function of MySQL. This method returns values from set for the given bit. Syntaxselect make_set(bits, str1, str2,...); Example 1Select make_set(1, 'apple','mango','grapes'); Output: Example 2Select make_set(1|3, 'apple','mango','grapes'); Output: Example 3Select make_set(1|4, 'apple','mango','grapes'); Output: Example 4Select make_set(4, 'apple','mango','grapes'); Output:
Next TopicMySQL String
|