yanghoon / obsidian-workspace

0 stars 0 forks source link

javax.persistence.GenerationType #1

Open yanghoon opened 6 months ago

yanghoon commented 6 months ago
yanghoon commented 6 months ago

H2

-- IDENTITY
CREATE TABLE employees (id bigint generated by sequence value primary key(id))
INSERT INTO employees (id) values (default)

-- SEQUENCE
CREATE TABLE employees (id bigint primary key(id))
CREATE SEQUENCE employees_seq START 1 WITH 1
INSERT INTO (ID) VALUES (SELECT NEXT VALUE FOR employees_seq)