mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 20:12:31 +01:00
8 lines
122 B
SQL
8 lines
122 B
SQL
delimiter //
|
|
create table t2 (a int) //
|
|
delimiter ;
|
|
\d //
|
|
create table t3 (a int) //
|
|
\d ;
|
|
show tables;
|
|
drop table t2, t3;
|