如何使用配置单元查询删除匹配的数据?

时间:2018-04-10 03:56:39

标签: hive hiveql

我有2张桌子。桌子' S'和表' A'。我需要使用配置单元查询从S表中删除A表中的数据。这有什么方法吗?

1 个答案:

答案 0 :(得分:0)

使用insert overwritenot 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)