Tagged Questions
Collation refers to a set of rules that determine how data is sorted and compared. Character data is sorted using rules that define the correct character sequence, with options for specifying case-sensitivity, accent marks, kana character types and character width.
63
votes
6answers
37k views
What is the best collation to use for MySQL (with PHP)
I'm wondering if there is a "best" choice for collation in MySQL for a general website where you aren't 100% of what will be entered? I understand that all the encodings should be the same, such as ...
44
votes
2answers
16k views
UTF-8: General? Bin? Unicode?
I'm trying to figure out what collation I should be using for various types of data. 100% of the content I will be storing is user-submitted.
My understanding is that I should be using UTF-8 General ...
38
votes
10answers
4k views
How do I sort unicode strings alphabetically in Python?
Python sorts by byte value by default, which means é comes after z and other equally funny things. What is the best way to sort alphabetically in Python?
Is there a library for this? I couldn't find ...
17
votes
2answers
252 views
Why is ' 2' > '10'?
Why is ' 2' with an initial space bigger than '10'?
select ' 2' > '10';
?column?
----------
t
(1 row)
I tried it with both latin1 and utf8 english collations:
...
17
votes
3answers
927 views
What is Perl's “standard string comparison order”?
This is really a double question, my two end goals having answers to:
What is the standard string comparison order, in terms of the mechanics?
What's a better name for that so I can update the docs?
...
16
votes
2answers
278 views
How to match string with diacritic in modern perl?
For example, match "Nation" in ""Îñţérñåţîöñåļîžåţîöñ" without extra modules. Is it possible in new Perl versions (5.14, 5.15 etc)?
I found an answer! Thanks to tchrist
Rigth solution with UCA ...
13
votes
4answers
436 views
How do I compare unicode strings containing non-english characters to sort alpabetically?
I am trying to sort array/lists/whatever of data based upon the unicode string values in them which contain non-english characters, I want them sorted correctly alphabetically.
I have written a lot ...
13
votes
3answers
849 views
MySQL treats ÅÄÖ as AAO?
These two querys gives me the exact same result:
select * from topics where name='Harligt';
select * from topics where name='Härligt';
How is this possible? Seems like mysql translates åäö to aao ...
12
votes
8answers
8k views
How do I see what character set a database / table / column is in MySQL?
How do I see what the character set that a MySQL database, table and column are in? Is there something like
SHOW CHARACTER SET FOR mydatabase;
and
SHOW CHARACTER SET FOR mydatabase.mytable;
and
...
12
votes
7answers
13k views
A script to change all tables and fields to the utf-8-bin collation in MYSQL
Is there a SQL or PHP script that I can run that will change the default collation in all tables and fields in a database?
I can write one myself, but I think that this should be something that ...
10
votes
1answer
409 views
Where can I find a specific set of collation rules for equality comparison of strings?
We all know that using String's equals() method for equality comparison will fail miserably. Instead, one should use Collator, like this:
// we need to detect User Interface locale somehow
Locale ...
9
votes
3answers
167 views
Hmm, why finding by '2' or '2' return the same record?
forgive my newbie question, but why finding by '2' or '2' in Mysql returns the same record?
For example:
Say I have a record with string field named 'slug', and the value is '2'. And the following ...
9
votes
2answers
804 views
Accent-insensitive sorting in MySQL
I am trying to achieve accent and case-insensitive sorting in MySQL. Following the instructions in the manual, this is supposed to work with the utf8 character set and utf8_general_ci collation.
...
9
votes
3answers
6k views
How to sort text in sqlite3 with specified locale?
Sqlite3 by default sorts only by ascii letters. I tried to look in google, but the only thing I found were informations about collations. Sqlite3 has only NOCASE, RTRIM and BIARY collations. How to ...
8
votes
5answers
190 views
Why would you want a case sensitive database?
What are some reasons for choosing a case sensitive collation over a case insensitive one? I can see perhaps a modest performance gain for the DB engine in doing string comparisons. Is that it? If ...
8
votes
3answers
4k views
Doing a join across two databases with different collations on SQL Server and getting an error
I know, I know with what I wrote in the question I shouldn't be surprised. But my situation is slowly working on an inherited POS system and my predecessor apparently wasn't aware of JOINs so when I ...
7
votes
3answers
222 views
SQL Server Collation Choices
I've spent a lot of time this evening trying to find guidance about which choice of collation to apply in my SQL Server 2008 R2 installation, but almost everything online basically says "choose what ...
7
votes
4answers
297 views
What effects does using a binary collation have?
While answering this question, I became uncertain about something that I didn't manage to find a sufficient answer to.
What are the practical differences between using the binary utf8_bin and the ...
7
votes
0answers
2k views
utf8_unicode_ci vs utf8_general_ci collation differences? [closed]
Possible Duplicate:
What's the difference between utf8_general_ci and utf8_unicode_ci
What's the difference between the two types of column/table collations? Which is preferred and why? ...
7
votes
4answers
11k views
When must we use NVARCHAR/NCHAR instead of VARCHAR/CHAR in SQL Server?
Is there a rule when we must use the Unicode types?
I have seen that most of the European languages (German, Italian, English, ...) are fine in the same database in VARCHAR columns.
I am looking ...
7
votes
5answers
6k views
Efficiently replace all accented characters in a string?
For a poor man's implementation of near-collation-correct sorting on the client side I need a JavaScript function that does efficient single character replacement in a string.
Here is what I mean ...
6
votes
3answers
204 views
Is there any way to sort strings in all languages?
I have this code. It sorts correctly in French and Russian. I used Locale.US and it seems to be right. Is this solution do right with all languages out there? Does it work with other languages? For ...
6
votes
3answers
186 views
Cyrillic symbols in INSERT query
$dblocation = "localhost";
$dbname = "xx";
$dbuser = "xx";
$dbpasswd = "xx";
$dbcnx = @mysql_connect($dblocation,$dbuser,$dbpasswd);
mysql_select_db($dbname, $dbcnx);
mysql_query("SET NAMES utf8");
...
6
votes
2answers
287 views
Sort values using a specific collation in Ruby/Rails
Is it possible to sort an array of values using a specific collation in Ruby? I have a need to sort according to the da_DK collation.
Given the array %w(Aarhus Aalborg Assens) I would like to have ...
6
votes
2answers
2k views
How do I perform an accent insensitive compare (e with è, é, ê and ë) in SQL Server?
I'm looking to compare two varchars in SQL, one would be something like Cafe and the other Café is there a way in SQL that will allow the two values to be compared. For instance:
SELECT *
FROM Venue
...
6
votes
1answer
5k views
Cast collation of nvarchar variables in t-sql
I need to change the collation of an nvarchar variable. By documentation:
(...)
3. The COLLATE clause can be specified
at several levels. These include the
following:
Casting the ...
5
votes
3answers
121 views
Why is MySQL treating é the same as e?
I'm storing Unicode strings in a MySQL database with a Django web application. I can store Unicode data fine, but when querying, I find that é and e are treated as if they were the same character:
In ...
5
votes
3answers
331 views
Java Unicode strings sorting
In Java, how does Unicode strings get compared?
What I mean is, if I have a few say, Japanese strings, when I do the following:
java.util.Arrays.sort(arrayOfJapaneseStrings);
how does those ...
5
votes
1answer
160 views
MySQL LIKE statement inteprets “o” and “ö” as the same
I have a Rails 3 application connected to a MySQL-database. The encoding used is utf-8. The database connects a lot of data in Swedish and has a search function.
When I search for gotland (a Swedish ...
5
votes
5answers
626 views
SQL Server case insensitive collation
What are the benefits/drawbacks of using a case insensitive collation in SQL Server (in terms of query performance)?
I have a database that is currently using a case-insensitive collation, and I ...
5
votes
4answers
2k views
phpmyadmin shows numbers or blob for mysql's utf8_bin callation columns?
I have a table with a varchar column. Its collation is set to utf8_bin. My software using this table and column works perfectly. But when I look at the content in phpmyadmin, I only see some hex ...
5
votes
7answers
7k views
rake db:create - collation issues
kratos-iii:railsproj zachinglis$ rake db:create
(in /Users/zachinglis/Sites/rails/railsproj)
Couldn't create database for {"adapter"=>"mysql", "host"=>"localhost", "username"=>"root", ...
5
votes
3answers
5k views
Mysql change column collation and character set of information schema
i want to change column collation and character set of system database information_schema... can anyone give any input on how to do this?
is there any special priviledges i need for this
5
votes
6answers
615 views
What is the best way to select string fields based on character ranges?
I need to add the ability for users of my software to select records by character ranges.
How can I write a query that returns all widgets from a table whose name falls in the range Ba-Bi for example?
...
4
votes
1answer
69 views
MySQL - Why are COLLATION rules ignored by LIKE operator for German ß character
I'm running the following select statements on MySQL 5.0.88 with utf8 charset and utf8_unicode_ci collation:
SELECT * FROM table WHERE surname = 'abcß';
+----+-------------------+------+
| id | ...
4
votes
1answer
179 views
How to set collation for a connection in SQL Server?
How can i set the collation SQL Server will use for the duration of that connection?
Not until i connect to SQL Server do i know what collation i want to use.
e.g. a browser with language fr-IT has ...
4
votes
1answer
61 views
SQL Server case/collation issue
I had a weird situation in a clients database today.
SQL Server 2005, database collation is case-insensitive, so I can write SQL queries using any case, without any problem ... except one.
One ...
4
votes
1answer
75 views
UTF8 string comparisons in MySQL
We have issues with utf8-string comparisons in MySQL 5, regarding case and accents :
from what I gathered, what MySQL implements collations by considering that "groups of characters should be ...
4
votes
1answer
94 views
Is there a MySQL utf8 collation that will not conflate accented characters?
I have a utf8 table and am storing data like:
+-------+--------+
| name | gender |
+-------+--------+
| ESMÉ | F |
| ESME | F |
+-------+--------+
However, when I try to add a unique ...
4
votes
2answers
253 views
Strange collation issue using LINQ to SQL
I have the strangest collation error in LINQ-SQL. I have this query that performs a left-outer join on 2 parameters. From the query, I want to extract a column for the left joined table if it's NOT ...
4
votes
2answers
157 views
Can't insert a unicode glyph in mysql
With this query:
UPDATE `arg`.`arg_currency` SET `symbol` = '𐀤' WHERE `arg_currency`.`id` =2 LIMIT 1 ;
I get this error:
Warning: #1366 Incorrect string value:
'\xF0\x90\x80\xA4' for ...
4
votes
2answers
225 views
Sort using utf characters in mysql or php ? best solutions
Using MySQL, i'm selecting a list of songs in spanish that i would like to sort. Here's a list of names that is returned by the query:
¡Decirevilla!
Alhambra
123 pasitos
África
Arroz
Decir
The ...
4
votes
7answers
135 views
dates behaving differently on different dbs?
I have an asp.net webpage, with a jQuery datepicker on it.
I am in the UK, so when I enter 28/02/2010, I expect it to resolve to 28th Feb 2010.
This is working as expected on my local dev env - but ...
4
votes
4answers
279 views
How to Sort in .NET Same as a SQL Server Collation?
I've been doing some TDD against some existing stored procedures. They return XML, so I've been using LINQ to XML.
At the moment, I'm working on a test that will prove that the data have been sorted ...
4
votes
3answers
552 views
Collation Conflict
i always got the message "Cannot resolve the collation conflict between "SQL_Latin1_General_CP1_CI_AS" and "Latin1_General_CI_AI" in the equal to operation."
when i run the script that came from MSSQL ...
4
votes
3answers
334 views
sql search on fields containing diacritics
I'm working at a web site search which uses Sql server 2008 express edition.
I have 'Books' table which has a field named 'Title' where there are titles containing romanian (latin) characters.
Well, ...
4
votes
3answers
902 views
Execute sqlite3 “dot” commands from Python or register collation in command line utility
My sqlite3 database contains a "collate" column-constraint. I've placed it in the schema for the table, to prevent accidentally neglecting to use the necessary collation. However this means when ...
4
votes
3answers
560 views
Sql Server Collation
The book I am reading says that
SQL Server supports two kinds of character data types—regular and Unicode. Regular data types include CHAR and VARCHAR, and Unicode data types include NCHAR and ...
4
votes
3answers
1k views
Storing a case insensitive VarChar in Postgres SQL
I want to add some constraint to my username VARCHAR in the sql table so that if a username exists, a duplicate username in a different case cannot be created. How can I do this? thanks
edit: I am ...
4
votes
8answers
10k views
Sql Server 2008 - Difference between collation types
I'm installing a new SQL Server 2008 server and are having some problems getting any usable information regarding different collations. I have searched SQL Server BOL and google'ed for an answer but ...