5 lines
106 B
SQL
5 lines
106 B
SQL
create table person (
|
|
id integer identity primary key,
|
|
first_name varchar(30),
|
|
last_name varchar(30)
|
|
); |