Files
sqlfun/tst-create-table.sql
2019-01-05 09:38:54 -05:00

5 lines
89 B
SQL

create table if not exists tester (
name varchar(100) primary key,
age int not null
);