标签: scala dataframe merge union
我有两个SQL数据帧:我想合并它们,保留旧行,新行并更新。在python中,我这样做:
pd.concat([df1, df2]).drop_duplicates('Key', keep='last')
如何在Scala中做到这一点?