How do i create a join query that uses two or more columns?
Im trying to do something like this but I cant find any examples on how to join on multiple columns
let logMaster = Table1
let logClient = Table1
logMaster
| join kind=innerunique (logClient) on ($left.field1 == $right.field1 && $left.field2 == $right.field2)
Ive tried comma separated (which I think the documents kind of hint at, and &&
, and AND
, but none of them seem to work.