Hi I am having the following query:
SELECT *
FROM `workshopmails`
WHERE `workshopmails_mail` NOT
IN (
SELECT workshopklanten_email
FROM `workshopklanten`
)
GROUP BY workshopmails_mail
ORDER BY `workshopmails`.`workshopmails_datum` DESC
But although i know this should give a lot of results it gives the message:
MySQL returned an empty result set (0 rows).
I tried it with an older database and got 100+ results now with my newer data it wont work any more the only thing i can think of is because there are some NULL values in it, that where not in the older database
Does anyone know a solution so i can extract the emails?
Thx Matthy