mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 13:02:28 +01:00
9 lines
122 B
MySQL
9 lines
122 B
MySQL
|
delimiter //
|
||
|
create table t2 (a int) //
|
||
|
delimiter ;
|
||
|
\d //
|
||
|
create table t3 (a int) //
|
||
|
\d ;
|
||
|
show tables;
|
||
|
drop table t2, t3;
|