Bạn muốn sử dụng insert ... select
hình thức của tuyên bố:
INSERT INTO data_stocks (data_id,quantity)
select ud.data_id, $quantity
from users u join
users_data ud
on u.uid = ud.uid;
Nếu bạn chỉ làm điều này cho một người dùng, nó có thể trông giống như thế này:
INSERT INTO data_stocks (data_id,quantity)
select ud.data_id, $quantity
from users_data ud
where ud.uid = $uid;