hi!
i have two lists, one with members phone numbers and the other with lots of phone numbers.
I want to make a query that retrieves me all the numbers in the second list that are not equal to the ones in the first list.
SELECT externos.[NR LLAMADO], tlf_emp.telefonos
FROM externos INNER JOIN tlf_emp ON externos.NOMBRE = tlf_emp.nombres
Where externos.[NR LLAMADO] not in tlf_emp.telefonos;
this retrieves me an error!!
externos.nrllamado is the table field with all the numbers,
tlf_emp.telefonos is the table field with just a few numbers.
i want all the numbers in "externos.nrllamado" that are different from the ones in "tlf_emp.telefonos"
i'm using Access 2003
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.