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)