DataBase/SQL
[MySQL/SQL] update 시 테이블 조인. update table join.
PCOSPD 100LRE SCRIE4A2
2021. 1. 12. 23:08
update시 관련 테이블의 데이터를 이용하려면 아래와 같이 조인 하여 사용한다.
update account a
inner join account_order o
on a.id = o.user_id
set a.order_expiry_at = o.order_end_at
WHERE
o.current_status = 'ORDERFAILED'
AND o.updated_at >= '2020-10-21'
AND o.error_msg = 'no value present';