How to delete a certain row from mysql table with same column values?

前端 未结 6 926
庸人自扰
庸人自扰 2020-12-07 10:37

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                     


        
6条回答
  •  慢半拍i
    慢半拍i (楼主)
    2020-12-07 11:03

    Best way to design table is add one temporary row as auto increment and keep as primary key. So we can avoid such above issues.

提交回复
热议问题