This should be easy although I cannot seem able to find it somewhere. myabe because i am terrible at explaining it
Say i want to search for that ENDS with “at” but it either starts with letter c or b
how would the query look like?
The closest thing I saw is this but it does not work:
SELECT title FROM table_name WHERE title LIKE '[ac]at'
I want it to return
cat
bat
If you are wondering why I need this, I am dealing with arabic letters so I need this query.
Thanks
You can use a regular expression: