Category Archives: MySQL
Finding international characters with MySQL
I recently had to find the rows in a database that contained any multibyte characters. My first thought was to leverage the difference between length() and char_length(). The query would be similiar to this: Select pKey, dataCol From myTable Where … Continue reading