ELT
Syntassi
ELT(N, str1, str2, str3, ...)
Spiegazione
Devono essere passati almeno due parametri. Restituisce str1 se N = 1, str2 se N = 2, e così via. Se N è un numero float, viene convertito all'intero più vicino. Restituisce NULL se N è minore di 1 o maggiore del numero di argomenti, o non è un numero. ELT() è il complemento di FIELD().
Esempi
MariaDB [(none)]> SELECT ELT(1, 'ej', 'Heja', 'hej', 'foo'); +------------------------------------+ | ELT(1, 'ej', 'Heja', 'hej', 'foo') | +------------------------------------+ | ej | +------------------------------------+ 1 row in set (0.00 sec) MariaDB [(none)]> SELECT ELT(4, 'ej', 'Heja', 'hej', 'foo'); +------------------------------------+ | ELT(4, 'ej', 'Heja', 'hej', 'foo') | +------------------------------------+ | foo | +------------------------------------+ 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.