dsfdsfsdf45489 2017-10-16 16:59
浏览 81
已采纳

MySQL:在比较数据后使用INNER JOIN更新标志

Sorry if this has been asked before, I have searched and tried several similar solutions, though none quite the same and none worked for me.

I am trying to update a field 'contactable' in TableA (customers), which should be either 0 or 1 depending on whether a customer has opted out of receiving our emails. All values in this field are currently '1'. If they have opted out, their email address will be present in the 'address' field of TableB (unsubscribes). So I am trying to use INNER JOIN to join TableA and TableB (both of which have an 'address' field) and if any the addresses in TableB match those in TableA, set 'contactable' in TableA from '1' to '0'.

Any help would be much appreciated. I gather it should be quite a simple operation, though I am new to SQL.

  • 写回答

2条回答 默认 最新

  • douzhenchun6782 2017-10-16 17:47
    关注

    I think the following should do what you are asking using INNER JOIN.

    UPDATE customers c
    INNER JOIN unsubscribes u ON u.address=c.address
    SET c.contactable=0
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 android报错 brut.common.BrutException: could not exec (exit code = 1)
  • ¥15 nginx反向代理获取ip,java获取真实ip
  • ¥15 eda:门禁系统设计
  • ¥50 如何使用js去调用vscode-js-debugger的方法去调试网页
  • ¥15 376.1电表主站通信协议下发指令全被否认问题
  • ¥15 物体双站RCS和其组成阵列后的双站RCS关系验证
  • ¥15 复杂网络,变滞后传递熵,FDA
  • ¥20 csv格式数据集预处理及模型选择
  • ¥15 部分网页页面无法显示!
  • ¥15 怎样解决power bi 中设置管理聚合,详细信息表和详细信息列显示灰色,而不能选择相应的内容呢?