|
|
|
|
|
by orhmeh09
1133 days ago
|
|
Interesting. This syntax reminds me a bit of the R package data.table's terseness for joins: B[A, on="x"] # A left join B
B[A] # same, assuming x is the key column on both, like K's lj [x;y]
A[B, on=.(x, y<=foo)] # right non-equi join
|
|