ELT() returns the Nth element of the list of strings: str1 if N = 1, str2 if N = 2, and so on. Returns NULL if N is less than 1, greater than the number of arguments, or NULL. ELT() is the complement of FIELD().
SELECT ELT(1, 'Aa', 'Bb', 'Cc', 'Dd');
'Aa'
SELECT ELT(4, 'Aa', 'Bb', 'Cc', 'Dd');
'Dd'
SELECT ELT(1, 'Aa', 'Bb', 'Cc', 'Dd');
'Aa'
SELECT ELT(4, 'Aa', 'Bb', 'Cc', 'Dd');
'Dd'