for循环

vxbzzdmp  于 2021-07-12  发布在  Spark
关注(0)|答案(0)|浏览(204)

我是新的Spark和蔚蓝。我已经使用databricks将dataframe的结果保存在temp表中。我在postgres数据库中有一个类似的表(相同的结构)。现在,我想删除postgres表中与temp table中列值相同的行(其中temp\u table.column2=postgres\u table.column2)。为此,我想使用for循环遍历temp表的行,并从postgres表中删除匹配的行。

Example:    
For rows in temp table sample_table -> 
   WHEN sample_table.column_name = postgres_table.column_name
   THEN DELETE postgres_table.column_name;

暂无答案!

目前还没有任何答案,快来回答吧!

相关问题