Re: utf8 in database but order does not sort correct
Whatever you are seeing, it is not due to failure in sorting.
Without seeing an example statement or environment description,
I can only speculate:
- Your characters may not really be in utf8, so check with
SELECT HEX(column_name) FROM table_name;
- You said DESC in your ORDER BY clause
- The collation may not really be utf8_spanish_ci, so check with
SELECT ... FROM INFORMATION_SCHEMA.COLUMNS ...
Subject
Views
Written By
Posted
12160
April 13, 2006 03:05AM
5366
April 13, 2006 07:35AM
4729
April 18, 2006 03:59AM
4215
April 25, 2006 02:24AM
7015
June 13, 2006 04:41AM
4706
June 20, 2006 12:03AM
4125
August 30, 2006 04:58AM
4212
October 16, 2006 01:34AM
Re: utf8 in database but order does not sort correct
4030
October 16, 2006 09:03AM
Sorry, you can't reply to this topic. It has been closed.
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.