Skip to content

Latest commit

 

History

History
12 lines (10 loc) · 232 Bytes

exclude.md

File metadata and controls

12 lines (10 loc) · 232 Bytes

Temporal capabilities

Exclude if there exists rows with duplicate id and name.

create table tests (
	id int,
	name text,
	exclude using gist (id with =, name with =)
);
insert into tests (id, name) values(2,'jane');