我有一个名为 WPList 的 SQLite 表,它有 4 列
ID (int), ID_quote (int foreign key), ID_workperformance (int foreign key), expire_date (text)
当我尝试使用此查询消除一行时,我遇到了一个大问题:
DELETE FROM WPList WHERE ID_workperformance = 12 & ID_quote = 21
我绝对确定 ID_workperformance 12 和 ID_quote 21 存在于表中,但是当我执行此查询时没有任何反应。你能帮我吗?谢谢!!