IDENTITY
Description
Grammar Syntax
"identity"(oid_id, oid_table_id, default)Sample Source Patterns
Input Code:
CREATE TABLE IF NOT EXISTS table_test
(
id integer,
inventory_combo BIGINT DEFAULT "identity"(850178, 0, '5,3'::text)
);
INSERT INTO table_test (id) VALUES
(1),
(2),
(3),
(4);
SELECT * FROM table_test;id
inventory_combo
id
inventory_combo
Related EWIs
Last updated
