mirror of
https://github.com/VinGarcia/ksql.git
synced 2025-05-31 11:42:25 +00:00
7 lines
95 B
SQL
7 lines
95 B
SQL
|
|
CREATE TABLE users (
|
|
id serial PRIMARY KEY,
|
|
name VARCHAR(50) NOT NULL,
|
|
age INT NOT NULL
|
|
);
|