5.16. COLLATION
In SQL, text strings are sortable objects.
This means that they obey ordering rules, such as alphabetical order.
Comparison operations can be applied to such text strings (for example, less than
or greater than
), where the comparison must apply a certain sort order or collation.
For example, the expression
means that 'a' < 'b'
precedes 'a'
in the collation.
The expression 'b'
means that 'c' > 'b'
follows 'c'
in the collation.
Text strings of more than one character are sorted using sequential character comparisons: first the first characters of the two strings are compared, then the second characters, and so on, until a difference is found between the two strings.
This difference defines the sort order.'b'
A COLLATION is the schema object that defines a collation (or sort order).
5.16.1. CREATE COLLATION
Defines a new collation for a character set
Available inDSQL
Syntax
CREATE COLLATION collname
FOR charset
[FROM {basecoll | EXTERNAL ('extname')}]
[NO PAD | PAD SPACE]
[CASE [IN]SENSITIVE]
[ACCENT [IN]SENSITIVE]
['<specific-attributes>']
<specific-attributes> ::= <attribute> [; <attribute> ...]
<attribute> ::= attrname=attrvalue
CREATE COLLATION Statement Parameters| Parameter | Description |
|---|---|
collname | The name to use for the new collation. The maximum length is 63 characters |
charset | A character set present in the database |
basecoll | A collation already present in the database |
extname | The collation name used in the |
The CREATE COLLATION statement does not create
anything, its purpose is to make a collation known to a database.
The collation must already be present on the system, typically in a library file, and must be properly registered in a .conf file in the intl subdirectory of the Firebird installation.
The collation may alternatively be based on one that is already present in the database.
5.16.1.1. How the Engine Detects the Collation
The optional FROM clause specifies the base collation that is used to derive a new collation.
This collation must already be present in the database.
If the keyword EXTERNAL is specified, then Firebird will scan the .conf files in $fbroot/intl/, where extname must exactly match the name in the configuration file (case-sensitive).
If no FROM clause is present, Firebird will scan the .conf file(s) in the intl subdirectory for a collation with the collation name specified in CREATE COLLATION.
In other words, omitting the FROM basecoll clause is equivalent to specifying FROM EXTERNAL ('collname').
The — single-quoted — extname is case-sensitive and must correspond exactly with the collation name in the .conf file.
The collname, charset and basecoll parameters are case-insensitive unless enclosed in double-quotes.
When creating a collation, you can specify whether trailing spaces are included in the comparison.
If the NO PAD clause is specified, trailing spaces are taken into account in the comparison.
If the PAD SPACE clause is specified, trailing spaces are ignored in the comparison.
The optional CASE clause allows you to specify whether the comparison is case-sensitive or case-insensitive.
The optional ACCENT clause allows you to specify whether the comparison is accent-sensitive or accent-insensitive (e.g. if
and 'e'
are considered equal or unequal).'é'
5.16.1.2. Specific Attributes
The CREATE COLLATION statement can also include specific attributes to configure the collation.
The available specific attributes are listed in the table below.
Not all specific attributes apply to every collation.
If the attribute is not applicable to the collation, but is specified when creating it, it will not cause an error.
Specific attribute names are case-sensitive.
In the table, 1 bpc
indicates that an attribute is valid for collations of character sets using 1 byte per character (so-called narrow character sets), and UNI
for Unicode collations
.
| Atrribute | Values | Valid for | Comment |
|---|---|---|---|
|
| 1 bpc, UNI | Disables compressions (a.k.a. contractions). Compressions cause certain character sequences to be sorted as atomic units, e.g. Spanish c+h as a single character ch |
|
| 1 bpc | Disables expansions. Expansions cause certain characters (e.g. ligatures or umlauted vowels) to be treated as character sequences and sorted accordingly |
| default or M.m | UNI | Specifies the ICU library version to use.
Valid values are the ones defined in the applicable |
| xx_YY | UNI | Specifies the collation locale.
Requires complete version of ICU libraries.
Format: a locale string like |
|
| 1 bpc | Uses more than one ordering level |
|
| UNI | Treats contiguous groups of decimal digits in the string as atomic units and sorts them numerically. (This is also known as natural sorting) |
|
| 1 bpc | Orders special characters (spaces, symbols etc.) before alphanumeric characters |
If you want to add a new character set with its default collation into your database, declare and run the stored procedure sp_register_character_set(name, max_bytes_per_character), found in misc/intl.sql under the Firebird installation directory.
In order for this to work, the character set must be present on the system and registered in a .conf file in the intl subdirectory.
5.16.1.3. Who Can Create a Collation
The CREATE COLLATION statement can be executed by:
Users with the
CREATE COLLATIONprivilege
The user executing the CREATE COLLATION statement becomes the owner of the collation.
5.16.1.4. Examples using CREATE COLLATION
Creating a collation using the name found in the
fbintl.conffile (case-sensitive)CREATE COLLATION ISO8859_1_UNICODE FOR ISO8859_1;Creating a collation using a special (user-defined) name (the
external
name must match the name in thefbintl.conffile)CREATE COLLATION LAT_UNIFOR ISO8859_1FROM EXTERNAL ('ISO8859_1_UNICODE');Creating a case-insensitive collation based on one already existing in the database
CREATE COLLATION ES_ES_NOPAD_CIFOR ISO8859_1FROM ES_ESNO PADCASE INSENSITIVE;Creating a case-insensitive collation based on one already existing in the database with specific attributes
CREATE COLLATION ES_ES_CI_COMPRFOR ISO8859_1FROM ES_ESCASE INSENSITIVE'DISABLE-COMPRESSIONS=0';Creating a case-insensitive collation by the value of numbers (the so-called natural collation)
CREATE COLLATION nums_coll FOR UTF8FROM UNICODECASE INSENSITIVE 'NUMERIC-SORT=1';CREATE DOMAIN dm_nums AS varchar(20)CHARACTER SET UTF8 COLLATE nums_coll; -- original (manufacturer) numbersCREATE TABLE wares(id int primary key, articul dm_nums ...);
See alsoSection 5.16.2, “DROP COLLATION”
5.16.2. DROP COLLATION
Drops a collation from the database
Available inDSQL
Syntax
DROP COLLATION collname
DROP COLLATION Statement Parameters| Parameter | Description |
|---|---|
collname | The name of the collation |
The DROP COLLATION statement removes the specified collation from the database, if it exists.
An error will be raised if the specified collation is not present.
If you want to remove an entire character set with all its collations from the database, declare and execute the stored procedure sp_unregister_character_set(name) from the misc/intl.sql subdirectory of the Firebird installation.
5.16.2.1. Who Can Drop a Collation
The Drop COLLATION statement can be executed by:
The owner of the collation
Users with the
DROP ANY COLLATIONprivilege
5.16.2.2. Example using DROP COLLATION
Deleting the ES_ES_NOPAD_CI collation.
DROP COLLATION ES_ES_NOPAD_CI;