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

Matrice nella query SQL?

Puoi utilizzare la IN-function di mysql

EDIT:come ha detto amosrevira, devi sfuggire alle tue stringhe nell'array.

$myarray[1] = "'hi'";
$myarray[2] = "'there'";
$myarray[3] = "'everybody'";

$newarray = implode(", ", $myarray); //makes format 'hi', 'there', 'everybody' 

SELECT * FROM myTable WHERE title IN ($newarray);