Nếu table_2
trống, sau đó thử câu lệnh chèn sau:
insert into table_2 (itemid,location1)
select itemid,quantity from table_1 where locationid=1
Nếu table_2
đã chứa itemid
giá trị, sau đó thử câu lệnh cập nhật này:
update table_2 set location1=
(select quantity from table_1 where locationid=1 and table_1.itemid = table_2.itemid)