I' ve a SQLite table called WPList with 4 column
ID (int), ID_quote (int foreign key), ID_workperformance (int foreign key), expire_date (text)
I' ve a big problem when I try to eliminate a row with this query:
DELETE FROM WPList WHERE ID_workperformance = 12 & ID_quote = 21
I' m absolutely sure that ID_workperformance 12 and ID_quote 21 exist in table but when I execute this query nothing happen. Can you help me please? Thanks!!