5 lines
89 B
SQL
5 lines
89 B
SQL
create table if not exists tester (
|
|
name varchar(100) primary key,
|
|
age int not null
|
|
);
|