I'm having a problem that brings me headlong. I have a TELEPHONE table in Access with the columns Prefix_provider and Prefix_client. I need (preferably with sets) to find Provider_Prefixes that are never Client_Prefix. Any ideas? This is what I have tried so far, but I do not know what else to do.
SELECT *
FROM TELEFONOS INNER JOIN TELEFONOS_2
ON TELEFONOS.Prefijo_proveedor != TELEFONOS_2.Prefijo_cliente;