ELT() FUNCTION in MySQL

ELT() FUNCTION The MySQL ELT function is used to extract the nth string from the list of strings. Syntax: ELT( n, string_1, string_2, … string_n ); Parameters: n: It is used to specify the index of the string to extract. string_1, string_2, … string_n: It is used to specify a list of strings. Example: mysql> … Read more