I want to use regular expression to filter out pure Chinese name by this:
SELECT `name` FROM `table` WHERE `name` REGEXP '[u4e00-u9fa5]';
But, according to this, it isn't possible,so I want to approach that from opposite direction,find content without any letter,digital and special character(I knew that it is not rigid),but can't find "and" operator,so how to do it?