我想知道是否有一種方法可以完全在sql中執(zhí)行此操作:q1 = SELECT campaign_id, from_number, received_msg, date_received FROM `received_txts` WHERE `campaign_id` = '8';INSERT INTO action_2_members (campaign_id, mobile, vote, vote_date) VALUES(q1.campaign_id, q1.from_number, q1.received_msg, q1.date_received);注意: q1將返回約3萬(wàn)行。有什么辦法可以在直式sql中完成上述操作?要直接從一個(gè)表(基本上是原始數(shù)據(jù)表)中提取數(shù)據(jù)并插入到另一個(gè)表(基本上是已處理數(shù)據(jù)表)中?
mysql ::插入表中,來(lái)自另一個(gè)表的數(shù)據(jù)?
PIPIONE
2019-11-26 10:38:53