标签: hive hiveql
我有2张桌子。桌子' S'和表' A'。我需要使用配置单元查询从S表中删除A表中的数据。这有什么方法吗?
答案 0 :(得分:0)
使用insert overwrite和not exists:
insert overwrite
not exists
insert overwrite table S select s.* from table_s s where not exists (select 1 from table_a a where a.key=s.key)