Mysql
 sql >> Database >  >> RDS >> Mysql

come impostare un array come variabile utente MySQL

Ho appena trovato la risposta qui:Come ciclare con un array in MySQL?

set @billable_types = 'client1,client2,client3';
select * from mttl where find_in_set(mttl.type, @billable_types);