Jan 20, 2006 #1 hawg9 IS-IT--Management Nov 9, 2005 22 US I have a set of values in table NPANXX and need to delete records in Table 2 where Field A in NPANXX equals Field B in Table 2.
I have a set of values in table NPANXX and need to delete records in Table 2 where Field A in NPANXX equals Field B in Table 2.
Jan 20, 2006 #2 lespaul Programmer Feb 4, 2002 7,083 US delete from table2 where FieldB in (select FieldA From NPANXX) Leslie Anything worth doing is a lot more difficult than it's worth - Unknown Induhvidual Essential reading for anyone working with databases: The Fundamentals of Relational Database Design Upvote 0 Downvote
delete from table2 where FieldB in (select FieldA From NPANXX) Leslie Anything worth doing is a lot more difficult than it's worth - Unknown Induhvidual Essential reading for anyone working with databases: The Fundamentals of Relational Database Design