OK.. completely drawing a blank so need some help..
Normally, I would use this simple type of query:
SQL
DELETEFROMTableOneINNERJOINTableTwoONTableOne.Field=TableTwo.Field
But this time, I need it to DELETE only certain records based on several fields, instead of just one.. I know I've done this before using something similar to:
SQL
DELETEFROMTableOneINNERJOINTableTwoWHERETableOne.FieldOne=TableTwo.FieldOneANDTableOne.FieldTwo=TableTwo.FieldFourANDTableOne.FieldSix=TableTwo.FieldTen
Ideas?