我在 MySQL 中的查询有一个问题。我的表有4列,它看起来像这样:
id_users id_product quantity date
1 2 1 2013
1 2 1 2013
2 2 1 2013
1 3 1 2013
id_users
和 id_product
是来自不同表的外键。
我只想删除一行:
1 2 1 2013
出现了两次,所以我想删掉它。
我试过这个问题:
delete from orders where id_users = 1 and id_product = 2
但是它会删除它们(因为它们是重复的)?