Skip to content

Instantly share code, notes, and snippets.

@recursivecodes
Created April 18, 2019 14:27
CREATE TABLE person (
id NUMBER GENERATED BY DEFAULT ON NULL AS IDENTITY,
version NUMBER(20) NOT NULL,
first_name VARCHAR2(50) NOT NULL,
last_name VARCHAR2(50) NULL,
is_cool NUMBER(1,0) NOT NULL
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment