Query.jl - Return all columns with @map

Yes, you can now use splatting syntax inside {}, so you can just write the join part as

@join(df2, _.a, _.c, {_..., __...})

That will take all the columns from the first and the second table and combine them.

2 Likes