Small adjustment (#176)

This commit is contained in:
Rafael Almeida
2022-12-30 13:39:09 -03:00
committed by GitHub
parent e339213852
commit 8c01f4e616

View File

@@ -33,7 +33,8 @@ This will automatically make all your table and column names have snake_case nam
CREATE TABLE customers (
id integer NOT NULL GENERATED BY DEFAULT AS IDENTITY,
full_name text NULL,
CONSTRAINT "PK_customers" PRIMARY KEY (id);
CONSTRAINT "pk_customers" PRIMARY KEY (id)
);
SELECT c.id, c.full_name
FROM customers AS c