Even “ch” appears in two letters, in Czechs it is considered one letter, and the order in the alphabet is considered the letter H (therefore, the correct order is a, b, c, d, e, f, g, h, ch, i, j (I missed some national characters.) But when I substr (colname, 1, 1) in a column containing words starting with ch Im, getting only "C"
this sql: SELECT SUBSTRING (title, 1, 1) AS title_truncated FROM node node WHERE node.type in ('termin') GROUP BY title_truncated ORDER BY title_truncated ASC "
returns: A, B, C, D, E, F, G, H, I, J (so there is no ch).
Databasebtw uses utf8_czech_ci
source
share