G 
		
								
				
				
			
		Guest
I'm trying to run the following delete query string
DELETE
FROM InfoUSA1 INNER JOIN TPSPA ON (InfoUSA1.areacode=TPSPA.areacode) AND (InfoUSA1.phone=TPSPA.phone)
Where I am trying to delete matching records from the InfoUSA1 table. So if the record on InfoUSA1 table matches the area code and phone on TPSPA table, I want that record deleted
But, I keep getting an error message saying thatI need to Specify the Table I want to delete records from, what am I doing wrong
Thanks!
				
			DELETE
FROM InfoUSA1 INNER JOIN TPSPA ON (InfoUSA1.areacode=TPSPA.areacode) AND (InfoUSA1.phone=TPSPA.phone)
Where I am trying to delete matching records from the InfoUSA1 table. So if the record on InfoUSA1 table matches the area code and phone on TPSPA table, I want that record deleted
But, I keep getting an error message saying thatI need to Specify the Table I want to delete records from, what am I doing wrong
Thanks!