seahorse123
Programmer
I have a table "tbl" which contains field "column1", and an array $v1 which contains strings "a1,a2,a3,a4", I want to populate all data from "tbl" that column1 matches "a1" or "a2" or "a3" or "a4", how to do that? do I have to split the array first and run this SELECT statement repeatly?
SELECT * from tbl where column1=<...>
thanks for the help.
SELECT * from tbl where column1=<...>
thanks for the help.