mirror of
https://github.com/MariaDB/server.git
synced 2025-07-20 10:24:14 +03:00
8 lines
79 B
Plaintext
8 lines
79 B
Plaintext
create table t1(a int) engine=innodb;
|
|
select * from t1;
|
|
a
|
|
1
|
|
2
|
|
5
|
|
drop table t1;
|