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 fluent的在模拟压强时使用希望得到一些建议
  • ¥15 STM32驱动继电器
  • ¥15 Windows server update services
  • ¥15 关于#c语言#的问题:我现在在做一个墨水屏设计,2.9英寸的小屏怎么换4.2英寸大屏
  • ¥15 模糊pid与pid仿真结果几乎一样
  • ¥15 java的GUI的运用
  • ¥15 Web.config连不上数据库
  • ¥15 我想付费需要AKM公司DSP开发资料及相关开发。
  • ¥15 怎么配置广告联盟瀑布流
  • ¥15 Rstudio 保存代码闪退