Trying to write a KQL query where results should come when the table column Rawdata either contains any of the strings – job1 or job2 :-
Tablename
| where RawData contains "JOB1" OR "JOB2"
The above gives me errror, what is the right way to do it