我有一个购物车表,它与我用来将用户的购物车详细信息保存到数据库的产品表有关。但我有一个问题,我如何节省产品数量?
我的意思是2x的298(这是产品的ID)?
答案 0 :(得分:1)
product_to_cart
+---------+------------+-----+
| cart_id | product_id | qty |
+---------+------------+-----+
| x | x | x |
...
复合主键包含cart_id
和product_id
?