I want to get rows that the urls contain one or more chinese character.I write a sql with regexp to do it.But i failed because the "/" fits the regexp.
The regexp is
SELECT "/" REGEXP '.*[^\x0f-\xff].*'
and the Sequel Pro returns 1
However, I find a pro-reg-testing-website to do the same regexp and it turns out 0.
Why it acts different with the same regexp in that website and the Sequel Pro?If the website has some optimization on it, then how to make it in the Sequel?