表说明在链接中表1和表2有带a和d的行。我需要从表2中删除这两个。请查看下面的链接了解详细说明。谢谢您。
koaltpgm1#
你可以做一个 INSERT OVERWRITE 使用 LEFT JOIN 选择“查询”。
INSERT OVERWRITE
LEFT JOIN
INSERT overwrite TABLE table2 SELECT t2.* from table2 t2 LEFT JOIN table1 t1 on (t1.x = t2.p) --use appropriate common column name WHERE t1.x is NULL; --where there's no common element in t2
1条答案
按热度按时间koaltpgm1#
你可以做一个
INSERT OVERWRITE
使用LEFT JOIN
选择“查询”。