I am trying to do something like this but I keep getting the error that "HELLO" column does not exist. The query that i am trying to run is:
delete from lib."table1" where "word"<>"HELLO" and "Language"="English"
Essentially I am trying to delete all rows where the "Language" column has English in it but no remove rows where the "word" column has "HELLO" in it. So it should skip rows where Language = English and word = HELLO, but delete all other rows with either English in Language or HELLO in word. What am i doing wrong? (if i take out the "word...ELLO" part, it works fine but deletes every English row).