test=# create table micky (id int, wal int);
CREATE TABLE
test=*# create unique index micky_unique on micky(id);
CREATE INDEX
test=*# \d micky
Tabelle »public.micky«
Spalte | Typ | Sortierfolge | NULL erlaubt? | Vorgabewert
--------+---------+--------------+---------------+-------------
id | integer | | |
wal | integer | | |
Indexe:
"micky_unique" UNIQUE, btree (id)
test=*# alter table micky add primary key using index micky_unique;
ALTER TABLE
test=*# \d micky
Tabelle »public.micky«
Spalte | Typ | Sortierfolge | NULL erlaubt? | Vorgabewert
--------+---------+--------------+---------------+-------------
id | integer | | not null |
wal | integer | | |
Indexe:
"micky_unique" PRIMARY KEY, btree (id)
test=*#