8 lines
97 B
MySQL
8 lines
97 B
MySQL
|
create table t1(
|
||
|
id serial primary key
|
||
|
);
|
||
|
|
||
|
---- create above / drop below ----
|
||
|
|
||
|
drop table t1;
|