mirror of
https://github.com/MariaDB/server.git
synced 2025-01-23 15:24:16 +01:00
12 lines
312 B
Text
12 lines
312 B
Text
|
create schema `A12345_@$#`;
|
||
|
create table `A12345_@$#`.t1 (i int) engine=ibmdb2i;
|
||
|
show create table `A12345_@$#`.t1;
|
||
|
Table Create Table
|
||
|
t1 CREATE TABLE `t1` (
|
||
|
`i` int(11) DEFAULT NULL
|
||
|
) ENGINE=IBMDB2I DEFAULT CHARSET=latin1
|
||
|
select * from `A12345_@$#`.t1;
|
||
|
i
|
||
|
drop table `A12345_@$#`.t1;
|
||
|
drop schema `A12345_@$#`;
|