f3ccbc95c1
Basic crud ops and join queries to use sqlc, more complex either from scratch or with a query builder later.
7 lines
108 B
SQL
7 lines
108 B
SQL
CREATE TABLE users (
|
|
id BIGSERIAL PRIMARY KEY,
|
|
name text NOT NULL,
|
|
age int NOT NULL
|
|
);
|
|
|