Hi all,
I currently have two tables that look something like this:
Table 1
Id | AddressNumber | AddressStreet | AddressZip
------------------------------------------------
1 | 50 | Fake | 60101
2 | 300 | Fake | 60101
3 | 50 | Fake2 | 60101
4 | 50 | Fake | 60103
Table 2
AddressLowRange | AddressHighRange | AddressStreet | AddressZip
---------------------------------------------------------------
50 | 200 | Fake | 60101
20 | 50 | Other Fake | 70102
i need to find a list of Ids from table 1 where the address is not in Table 2. So for the sample data above i'd get back ids 2, 3 & 4.
Thanks