Thanks for the response Mika. Although it accepted "NOT LIKE", below query worked: SELECT count(*) FROM synth_session_records WHERE failureType = "Test location is currently unavailable" AND measurementSpec.scheduleName NOT LIKE "Equity*". Note the missing Dot in NOT LIKE clause after Equity. So far so good, the follow up question is how to ignore many patterns, say, SELECT count(*) FROM synth_session_records WHERE failureType = "Test location is currently unavailable" AND measurementSpec.scheduleName NOT LIKE "Test*|Equity*|Find*"
... View more