CREATE TABLE `laender` ( `land` char(30) NOT NULL, `land_e` char(30) NOT NULL, `land_f` char(30) NOT NULL, `iso` char(3) NOT NULL, `kfz` char(3) NOT NULL, `eu` tinyint(1) NOT NULL, PRIMARY KEY (`iso`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 [CHARSET=latin1] SHOW VARIABLES LIKE 'char%'; character_set_client | utf8 character_set_connection | utf8 character_set_database | utf8 [latin1] character_set_filesystem | binary character_set_results | utf8 character_set_server | utf8 character_set_system | utf8 character_sets_dir | C:\Program Files\MySQL\MySQL Server 5.5\share\charsets SHOW VARIABLES LIKE 'col%'; collation_connection | utf8_general_ci collation_database | utf8_general_ci [latin1_swedish_ci] collation_server | utf8_general_ci SELECT land FROM laender ORDER BY land;Für mich steht damit fest: Es liegt am verwendeten Character-Set, bzw. der Collation-Sequence.
| Subject | Views | Written By | Posted |
|---|---|---|---|
| Umlautsortierung | 895 | J?rg B?chner | 02/29/2012 10:46AM |
| Re: Umlautsortierung | 481 | Thomas Wiedmann | 03/01/2012 12:27AM |
| Re: Umlautsortierung | 445 | Thomas Wiedmann | 03/01/2012 01:08AM |
| Re: Umlautsortierung | 651 | J?rg B?chner | 03/02/2012 01:24AM |
| Re: Umlautsortierung | 717 | Thomas Wiedmann | 03/02/2012 03:17AM |
| Re: Umlautsortierung | 465 | J?rg B?chner | 03/02/2012 10:36AM |
| Re: Umlautsortierung | 416 | J?rg B?chner | 03/04/2012 06:54AM |
| Re: Umlautsortierung | 438 | Thomas Wiedmann | 03/04/2012 08:54AM |
| Re: Umlautsortierung | 457 | J?rg B?chner | 03/05/2012 03:32AM |
Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.