I have to query an InFlux database and match a particular string within one of columns.
something like: WHERE (\"namecache\" =~ /<match_string>/)
however, the <match_string> could itself contain '/' characters. I am unable to escape the forward slashes within the match string because of which the query fails.
Is there a way to escape the '/' slashes? or is there an alternate way to match partial strings?
Thanks in advance!