一个from多个insert,可以在同一个查询中使用多个insert子句,这样的好处是我们只需要扫描一遍源表就可以生成多个不相交的输出
from a
insert overwrite table b
select * from a where a.age < 20
insert overwrite table c
select * from a where a.num = 3;
一个from多个insert,可以在同一个查询中使用多个insert子句,这样的好处是我们只需要扫描一遍源表就可以生成多个不相交的输出
from a
insert overwrite table b
select * from a where a.age < 20
insert overwrite table c
select * from a where a.num = 3;
本文标题:优化二:多表插入
本文链接:https://www.haomeiwen.com/subject/itujoxtx.html
网友评论