I am a new developer in Grafana and I would like to have a query that returns a variable having "CA" at the END of its name.
I was using SEARCH key code but it seems that it returns only the contained characters while I am really interested in the location of those characters.
As an example, I wrote this query :
SELECT cmts_device SEARCH CA
And it shows me this as a result :
As you can see, it returns some values like : "CAE1CC", "CAE2CC", "CAE3CC" which have the "CA" substring but they end by "CC" not "CA".
How can I fix this pleaase ? Thank you for any help !