douxia6554 2015-07-10 21:56
浏览 47
已采纳

我的行的堆栈值而不是多个

So I've got a table that looks like this:

username - item - amount
user1 - sword - 1
user1 - sword - 1
user1 - sword - 1
user2 - sword - 1
user2 - sword - 1

How do I make it so that when I add an item to one of the users, they stack like this instead:

username - item - amount
user1 - sword - 3
user2 - sword - 2

the code for adding item:

$sql = "insert into items (username, item, amount) values ('".$_SESSION['user_name']."', 'sword', '1')";
  • 写回答

1条回答 默认 最新

  • dtc88867 2015-07-10 22:20
    关注

    you need to create unique index for username and item column and use on duplicate key update so if same pairs for username and item occurs sum existing amount value with new one

    create unique index items_username_item on items(username, item);
    
    insert into items (username, item, amount) 
    values ('".$_SESSION['user_name']."', 'sword', '1')
    on duplicate key update amount = amount + values(amount);
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 求lingo代码和思路
  • ¥15 公交车和无人机协同运输
  • ¥15 stm32代码移植没反应
  • ¥15 matlab基于pde算法图像修复,为什么只能对示例图像有效
  • ¥100 连续两帧图像高速减法
  • ¥15 如何绘制动力学系统的相图
  • ¥15 对接wps接口实现获取元数据
  • ¥20 给自己本科IT专业毕业的妹m找个实习工作
  • ¥15 用友U8:向一个无法连接的网络尝试了一个套接字操作,如何解决?
  • ¥30 我的代码按理说完成了模型的搭建、训练、验证测试等工作(标签-网络|关键词-变化检测)