Hocam Sorunun mysql 5.5 versiyonunda çözüldüğü belirtilmiş, incelerseniz belki sorununuzu çözebilirsiniz...
It's a well known bug in MySQL. It's fixed in MySQL 5.5
See: http://bugs.mysql.com/bug.php?id=12030
The issue stems from concatenating an integer with a varchar.
The work around is to cast the id (integer) first to a char, and then concatenate, ie:
SELECT CONCAT(cast(id as char), title) FROM utf8_test
share|improve this answer
http://stackoverflow.com/questions/6...arset-in-mysql
mysql
MySQL Support enabled
Active Persistent Links 0
Active Links 0
Client API version 5.5.32
baktım hocam onlarada