sqlfun/test/tst-create-table.sql
2024-02-12 21:07:48 +01:00

5 lines
90 B
SQL

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