I would like to query and there is special character in the table
For example:
tab:([]a:("ab*cd*ef";"3rr3f";"fewfa");b:1 2 3)
I tried this
select from tab where a like "ab*cd*ef"
This doesnt work. I am using this in a function so it will extract the exact word to a variable
variable:"ab*cd*ef"
and I use this variable to match with another table. wondering how this should work