I need to do a join on two fields. I have a table that has fields titled agency_no and permit_no. I have another table with a list of agency's and permits I want to keep. I need to delete records in another table where the combination of the agency_no and permit_no do not exist.
I have accomplished this task on other tables referring to only one field with the following code:
delete from contact_link
from dbo.contact_link
left join User_ID_Save on dbo.contact_link.contact_no = User_ID_Save.contact_no
where User_ID_Save.contact_no is null
Thanks for any assistance you can provide.
Ron--
I have accomplished this task on other tables referring to only one field with the following code:
delete from contact_link
from dbo.contact_link
left join User_ID_Save on dbo.contact_link.contact_no = User_ID_Save.contact_no
where User_ID_Save.contact_no is null
Thanks for any assistance you can provide.
Ron--