I got a PHP script that I need to run several queries of the same thing just different parameters, like:
SELECT *
FROM Weather_records
WHERE type = 1,
SELECT *
FROM Weather_records
WHERE type = 2
Is there a way to run this as one query and just put it in a array or something?
where type IN, ... too many options and possibilities here!