Good Day
I want to perform a feature effect query that is both case insensitivity and partial. If the name field has "HELLO" in it, I want to it match any variation of HELLO, hello, he, etc...
The best I can get is doing:
name LIKE '%HELLO%'
Which will find all occurrences, and combinations of HELLO, (HE, HEL, etc...), but when I try to add case insensitivity it doesn't work.
How do you make that case-insensitive? I have to do this using a feature effect query because the layer data I'm looking at, is from a StreamLayer, so I have to query the LayerView,
I thought doing this might have worked
(name LIKE UPPER('%hel%'))
But I get an error about UPPER, so now I think the best way to tackle this issue is by asking the Stream for a feature update.
Thanks