Hello,
I have a problem.
Lithuanian letters:
ąčęėįšųūž
ĄČĘĖĮŠŲŪŽ
aceeisuuz
What I must use to sort by this ORDER?
When I use
mysql> CREATE TABLE w
(
s VARCHAR(5) CHARACTER SET cp1257 COLLATE cp1257_lithuanian_ci
);
Query OK, 0 rows affected (0.04 sec)
mysql> insert into w values('ąčęėį'),('šųūža');
Query OK, 2 rows affected (0.00 sec)
Records: 2 Duplicates: 0 Warnings: 0
mysql> select * from w;
+-------+
| s |
+-------+
| ??ę?? |
| ?ų??a |
+-------+
2 rows in set (0.00 sec)
I got question mark '?'?
:(
Please help me.
--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe: http://lists.mysql.com/[EMAIL PROTECTED]