Forum Discussion
Dinesh_G
Aug 11, 2021Copper Contributor
Unable to use join operator
Hi, I'm unable use join operator.Please help me what's wrong in my syntax Signinlogs | where IPAddress==" xxx" |project ______ |join AADNoninteractiveSignInLogs | where UserDisplayname=="xxx" ...
m_zorich
Aug 12, 2021Iron Contributor
When using join you need to tell it what column to join on (must exist in both tables)
SigninLogs
| project UserPrincipalName, IPAddress
| join kind=inner
AADNonInteractiveUserSignInLogs on UserPrincipalName, IPAddress
SigninLogs
| project UserPrincipalName, IPAddress
| join kind=inner
AADNonInteractiveUserSignInLogs on UserPrincipalName, IPAddress