I have to make a MySQL
comparison with an array of numbers.
For example:
I have array
of integers asm:
$inteiros = array();
And I have to return the ids
of my class table with this array
, like this:
SELECT * FROM turmas WHERE idTurma = (AQUI ENTRA O ARRAY);
Is there a possibility to make this comparison?