I want to set a db column collation as Russian and Finnish. I found that there are either Russian or Finnish collations, but no simultaneous ones.
For Russian symbols ALTER TABLE Teams CHANGE Name CHARACTER SET cp1251 COLLATE cp1251_bin NOT NULL;
For Finnish symbols ALTER TABLE Teams CHANGE Name CHARACTER SET cp1251 COLLATE latin1_swedish_ci NOT NULL;
Is there any possibility to store both RU/FI symbols?