I have a problem with my queries in MySQL. My table has 4 columns and it looks something like this:
id_users    id_product    quantity    date
 1              2              1       2020
 1              2              1       2020
 2              2              1       2020
 1              3              1       2020
id_users and id_product are foreign keys from different tables.
What I want is to delete just one row:
1     2     1    2020
Which appears twice, so I just want to delete it.
I've tried this query:
delete from orders where id_users = 1 and id_product = 2
But it will delete both of them (since they are duplicated). Any hints on solving this problem?