6 lines
119 B
SQL
6 lines
119 B
SQL
|
|
create table person (id integer not null primary key, name text);
|
|
|
|
insert into person (id, name)
|
|
values (1, 'John');
|