full join 之后keyColums 会出现两列,合并两列的话有没有什么简便方法?

attachments-2022-08-h5NIH80S62fc94418c645.png

请先 登录 后评论

1 个回答

mhxiang
t1= table(1 2 3 3 as id, 7.8 4.6 5.1 0.1 as value);
t2 = table(5 3 1 as id,  300 500 800 as qty);

select nullFill(id,t2.id) as id,value,qty from fj(t1, t2, `id)

attachments-2022-08-CUbWwwQC62fc94a5636ab.png

请先 登录 后评论