mirror of
https://github.com/MariaDB/server.git
synced 2025-02-02 03:51:50 +01:00
10 lines
173 B
Text
10 lines
173 B
Text
|
set names utf8;
|
|||
|
create table `А` (id int);
|
|||
|
show tables from test like 'А';
|
|||
|
Tables_in_test (А)
|
|||
|
а
|
|||
|
show tables from test like 'а';
|
|||
|
Tables_in_test (а)
|
|||
|
а
|
|||
|
drop table `А`;
|