When I submit this query, it is just returning a blank white page.
Except it is MUCH bigger... I am trying to pull all IDs from a DB of over 22,000 records EXCEPT about 3000 of them.Code:SELECT * FROM `leads`
WHERE (`id` != "31769629-4a63-83b2-de31-49b3a5e72271"
OR `id` != "162541ac-8842-86c9-6fa8-49af50d437e6"
OR `id` != "df61cc92-4af1-6f22-6aa3-4a4a9fd293e6")
Any ideas how I can do that without the DB timing out like that?