Jeśli table_2
jest pusta, wypróbuj następującą instrukcję insert:
insert into table_2 (itemid,location1)
select itemid,quantity from table_1 where locationid=1
Jeśli table_2
zawiera już itemid
wartości, a następnie wypróbuj tę instrukcję aktualizacji:
update table_2 set location1=
(select quantity from table_1 where locationid=1 and table_1.itemid = table_2.itemid)