I am using this reference documentation for Application Insights.
How can I do a sub-select using the output of a different query?
//Query 1
Events
| where Timestamp >= ago(30min) and Data contains('SomeString')
| project TraceToken
//I would like to use the first query's output in the subselect here.
Events
| where TraceToken in ({I would like to use the First query's output here.})
Is a join better in this scenario. Which would have better performance.