INSERT INTO channel_booking_ixd (
        booking_id,
        task_id,
        task_no,
        latest_leave_time,
        update_time
    )
    VALUES
    <foreach collection="list" item="item" index="index" separator=",">
        (
        #{item.bookingId},
        #{item.taskId},
        #{item.taskNo},
        #{item.latestLeaveTime},
        #{item.updateTime}
        )
    </foreach>
        on duplicate key update
        update_time=VALUES(update_time),
        latest_leave_time = VALUES(latest_leave_time)
</insert>

 

相关文章:

  • 2021-05-24
  • 2022-12-23
  • 2021-09-23
  • 2022-12-23
  • 1970-01-01
  • 2021-09-13
猜你喜欢
  • 2021-11-17
  • 2021-06-07
  • 2021-06-02
  • 2021-09-19
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案