Bei der Verwendung von NOT IN sollten Sie sicherstellen, dass keiner der Werte NULL ist:
SELECT mac, creation_date
FROM logs
WHERE logs_type_id=11
AND mac NOT IN (
SELECT mac
FROM consols
WHERE mac IS NOT NULL -- add this
)
Bei der Verwendung von NOT IN sollten Sie sicherstellen, dass keiner der Werte NULL ist:
SELECT mac, creation_date
FROM logs
WHERE logs_type_id=11
AND mac NOT IN (
SELECT mac
FROM consols
WHERE mac IS NOT NULL -- add this
)