0
有一個分區表A,有4個分區,我想數據加載到表B.如何可以平行爲MySQL分區表的每個分區
insert into B select * from A partion (p0) where type = 0;
insert into B select * from A partion (p1) where type = 0;
insert into B select * from A partion (p2) where type = 0;
insert into B select * from A partion (p3) where type = 0;
我怎樣才能加載數據爲每個分區執行sql在平行下。只是在一個連接。
好吧,你不能。 – e4c5
除了創建另一個表格(現有表格的精確副本)的全部要點是什麼? – e4c5
對不起,我忘記了 – elevenights