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

Creazione di una variabile array in MySQL

Puoi creare un array in questo modo

SET @arrayVar = 'var1,var2,bar3,foo4';

Può essere utilizzato così

select from myTable where find_in_set(myTable.myColumn, @arrayVar);

Se vuoi creare un array da una query, puoi utilizzare le tabelle temporanee

create temporary table if not exists tmp_table select myColumn from myTable where