EXPORT_SET
Syntassi
EXPORT_SET(bit, on, off [,separatore [,numero_bit]])
Spiegazione
Restituisce una stringa in cui ad ogni bit vero corrisponda una stringa on, e ad ogni bit falso corrisponda una stringa off. L'argomento bit è esaminato un bit alla volta, da destra a sinistra (dai bit più bassi a quelli più alti). Le stringhe vengono aggiunte al risultato da sinistra a destra, separate dalla stringa separatore (il valore predefinito è il carattere virgola ","). Il numero di bit esaminati è stato da numero_bit (per default è 64).
Esempi
MariaDB [(none)]> SELECT EXPORT_SET(5,'Y','N',',',4); +-----------------------------+ | EXPORT_SET(5,'Y','N',',',4) | +-----------------------------+ | Y,N,Y,N | +-----------------------------+ 1 row in set (0.00 sec) MariaDB [(none)]> SELECT EXPORT_SET(6,'1','0',',',10); +------------------------------+ | EXPORT_SET(6,'1','0',',',10) | +------------------------------+ | 0,1,1,0,0,0,0,0,0,0 | +------------------------------+ 1 row in set (0.00 sec)
Content reproduced on this site is the property of its respective owners,
and this content is not reviewed in advance by MariaDB. The views, information and opinions
expressed by this content do not necessarily represent those of MariaDB or any other party.