8
Уникальное ограничение Postgres против индекса
Как я понимаю документацию, следующие определения эквивалентны: create table foo ( id serial primary key, code integer, label text, constraint foo_uq unique (code, label)); create table foo ( id serial primary key, code integer, label text); create unique index foo_idx on foo using btree (code, label); Тем не менее, примечание …
157
sql
postgresql
unique