I am trying to create an array in MySQL as it is done in Oracle for a procedure ( procedure ), but I can not get it. With this code I am trying:
# .... Código .... #
DECLARE
type array_letras IS VARRAY(6) OF VARCHAR(1);
letra array_letras;
BEGIN
letra := array_letras('A', 'B', 'C', 'D', 'E');
# .... Código .... #