9 lines
89 B
SQL
9 lines
89 B
SQL
-- [TITLE]
|
|
|
|
create table title
|
|
(
|
|
value text
|
|
);
|
|
|
|
insert into title (value) values ('');
|