I have a list of words in a text file. Each word separated by a new line. I want to read all of the words, and then, for each word I have to look up the DB and remove rows that contain the words that were read from the text file. How do i do that? I am a newbie to DB programming and I guess we dont have loops in SQL, right?
1 - Read all the words from the text file 2 - For each word from the text file 3 - Remove entry from db e.d. delete from TABLE where ITEMNAME is like ' WORDFROMFILE'
Thanks