I'd like to detect Chinese characters in a redshift postgresql database using a SQL query.
An acceptable answer can include regex since I can use regexp_instr
.
I think that this will detect non-English characters: where regexp_instr(column, '[^[:print:]]') > 0
Can I do something like that which will filter to specifically Chinese characters?