I have 'select into' local variables in my MySQL database and it's only working on first variable. I am not sure why it's not working. 'select into' works like in SQL on MySQL?
SELECT
adresse_a,
adresse_b,
adresse_c,
adresse_d_oid
into
@a,
@b,
@c,
@d_oid
from table where oid = my_oid limit 1;
and it's in procedure / loop and always shows a - good value b,c,d is empty / null.