Forum Discussion
GaryBushey
Oct 05, 2019Bronze Contributor
KQL Syntax question
I was looking at the KQL for one of the charts in a workbook and came across this statement that I cannot figure out what it does. AppDisplayName in ('*') or '*' in ('*') The full statement ...
- Oct 08, 2019
https://docs.microsoft.com/en-us/azure/kusto/query/inoperator
in allows you to to use a list. so where AppDisplayName in ('*') is saying basically where appdisplayname is populated.
Nicholas DiCola (SECURITY JEDI)
Oct 08, 2019Former Employee
https://docs.microsoft.com/en-us/azure/kusto/query/inoperator
in allows you to to use a list. so where AppDisplayName in ('*') is saying basically where appdisplayname is populated.
- GaryBusheyOct 08, 2019Bronze Contributor
Nicholas DiCola (SECURITY JEDI) So does
"*" in ("*")
Mean
A) If any column has data
B) if all columns have data
C) Something entirely different?
- Nicholas DiCola (SECURITY JEDI)Oct 08, 2019Former Employee
since its an or it should be A