I have two tables and I want to delete rows in one table1 based on all the data in field2 of another table2 found in field1 of table1.
I believe the solution to be like this
DELETE FROM table1 WHERE field1 LIKE '%'+ table2.field2 +'%'
This is not working... WHY? Is there another option.
I want to delete rows of a table based on my keywords in table2