mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 20:42:30 +01:00
8 lines
79 B
Text
8 lines
79 B
Text
|
create table t1(a int) engine=innodb;
|
||
|
select * from t1;
|
||
|
a
|
||
|
1
|
||
|
2
|
||
|
5
|
||
|
drop table t1;
|