dsdqpdjpq16640651 2015-11-11 08:54
浏览 24
已采纳

我可以使用2个不同列中的信息来指定UPDATE查询中更新信息的位置吗?

Consider this table:

Email | Message | Votes
------+---------+-------
Email1| Msg1    | 2
------+---------+-------
Email2| Msg2    | 1
------+---------+-------
Email3| Msg2    | 3

Now, I want to update the 3rd cell under Votes column using following query:

UPDATE tablename SET Votes=4 WHERE Message=Msg2

But the problem is that it will update the both cells under Votes, where Msg2 is present. But I want to update the cell where Email=Email3 and Message=Msg2.

Can it be done using UPDATE query?

  • 写回答

1条回答 默认 最新

  • dongzhuo3202 2015-11-11 08:54
    关注

    Use multiple condtitions and join them with AND:

    UPDATE tablename 
    SET Votes = 4 
    WHERE Message = 'Msg2'
      AND Email   = 'Email3';
    

    or using row-constructor:

    UPDATE tablename 
    SET Votes = 4 
    WHERE (Message, Email) = ('Msg2','Email3');
    

    <kbd>SqlFiddleDemo</kbd>

    EDIT:

    I tried but it didn't work. It didn't update anything

    So you have different data than you provided. Probably whitespaces. Try:

    UPDATE tablename 
    SET Votes = 4 
    WHERE TRIM(Message) = 'Msg2'
      AND TRIM(Email)   = 'Email3';
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 stm32代码移植没反应
  • ¥15 matlab基于pde算法图像修复,为什么只能对示例图像有效
  • ¥100 连续两帧图像高速减法
  • ¥15 组策略中的计算机配置策略无法下发
  • ¥15 如何绘制动力学系统的相图
  • ¥15 对接wps接口实现获取元数据
  • ¥20 给自己本科IT专业毕业的妹m找个实习工作
  • ¥15 用友U8:向一个无法连接的网络尝试了一个套接字操作,如何解决?
  • ¥30 我的代码按理说完成了模型的搭建、训练、验证测试等工作(标签-网络|关键词-变化检测)
  • ¥50 mac mini外接显示器 画质字体模糊