SQL ondersteunt gescheiden identifiers om toe te staan dat tabel- of kolomnamen SQL-sleutelwoorden, witruimte, interpunctie, andere speciale tekens of internationale tekens bevatten.
Gebruik in MySQL aanhalingstekens (of stel de ANSI_QUOTES
in) SQL-modus om standaard dubbele aanhalingstekens te gebruiken).
Voorbeeld:
mysql> create table `桌子` (id serial);
mysql> show create table `桌子`\G
--------------
show create table `桌子`
--------------
*************************** 1. row ***************************
Table: 桌子
Create Table: CREATE TABLE `桌子` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1
1 row in set (0.00 sec)