अगर table_2
खाली है, तो निम्नलिखित सम्मिलित कथन का प्रयास करें:
insert into table_2 (itemid,location1)
select itemid,quantity from table_1 where locationid=1
अगर table_2
पहले से ही itemid
शामिल है मान, फिर इस अद्यतन कथन का प्रयास करें:
update table_2 set location1=
(select quantity from table_1 where locationid=1 and table_1.itemid = table_2.itemid)