I have a field called "bunit" and I need to filter on results that either have a null value OR a value that contains "servers". I need to use wildcard with the servers because all the results are different, I just need to see anything that contains servers in it.
Adding where isnull(bunit)
to the end of my search gives me all of the null results but how do I add the part where I look for any result with servers as a value?(using wildcard) So I want it to show both any field with null value or any field that contains servers in it.
Thank you!
You could try the like
command:
Example:
where isnull(bunit) OR like(bunit,"%wildcard_is_pct%")
Here is the manpage
You could try the like
command:
Example:
where isnull(bunit) OR like(bunit,"%wildcard_is_pct%")
Here is the manpage
This works, thank you 🙂