koi8r_bin
This page is part of MariaDB's Documentation.
The parent of this page is: Collations for MariaDB Xpand
Topics on this page:
Overview
A collation for the koi8r character set.
DETAILS
Is Default? No
EXAMPLES
CREATE TABLE collate_example1 (
name VARCHAR(32) CHARSET koi8r,
description VARCHAR(64) CHARSET koi8r COLLATE koi8r_bin
);
CREATE TABLE collate_example2 (
name VARCHAR(32),
description VARCHAR(64)
) DEFAULT CHARSET koi8r, DEFAULT COLLATE koi8r_bin;
SET SESSION collation_connection = 'koi8r_bin';