update关联更新两个表
2022-01-06 本文已影响0人
晓函
update test1,test2
set test1.name=test2.name,test1.age=test2.age
where test1.id=test2.id
实际操作:
在thing里面添加order_id字段
update thing,order
set thing.order_id=order.id
where thing.status=3 and thing.id=order.thing_id