MERGE è una strada da percorrere.
C'è una borsa:items=Item1, Item2
C'è un BagInDB:bag_id =1items=Item1, Item3
Quindi dobbiamo aggiornare Item1, aggiungere Item2 ed eliminare Item3
1° passaggio (unisciti):
select * from bag full outer join (select * from bagInDB where bag_id = 1)
ti darà
bag_itemName bagInDb_itemName
------------ ----------------
Item1 Item1
Item2 null
null Item3
2° passaggio (unione)
merge into baginDB b
using(query above) q on b.bag_id = 1 and b.itemName = q.bagInDb_itemName
when matched then
delete where q.bag_itemName is null
<rest of the conditions>