I have some rows in MySQL where there are Chinese characters. I want to delete these row.
How can I detect rows with Chinese characters in MySQL?
|
I have some rows in MySQL where there are Chinese characters. I want to delete these row. How can I detect rows with Chinese characters in MySQL? |
||||
|
If all the other rows have alphanumeric values try the following:
Do check the results before deletion, using the following:
|
|||
|
|
|
I don't have an answer, but to provide you with a starting point: Chinese characters will occupy certain blocks in the UTF-8 character set. Example You would have to query for rows that contain characters between the first and the last point of that block. I can't think of a way to automate this though (i.e. to query for characters inside a certain range without naming each character explicitly). Another untested idea that comes to mind is using It's an interesting problem. |
||||
|
|
NOT RLIKE '[[:ideogram:]]+'would work, but not sure at all. – kirilloid Mar 20 '12 at 21:29