C-Sharp | Java | Python | Swift | GO | WPF | Ruby | Scala | F# | JavaScript | SQL | PHP | Angular | HTML
MySQL EXPORT_SET() FunctionExport_set() is a Sring function of MySQL. This method returns string for each bit set. Syntaxselect export_set(bits,on,off[,separator[,number_of_bits]]); Example 1select export_set(5, 'Yes','No',',',4); Output: Example 2select export_set(5, 'hello','bye',',',4); Output:
Next TopicMySQL String
|