ksql/benchmarks/sqlcgen/schema.sql

7 lines
101 B
SQL

CREATE TABLE users (
id BIGSERIAL PRIMARY KEY,
name text NOT NULL,
age integer NOT NULL
);