Answers for "make a column primary key postgres"

SQL
2

postgresql drop primary key constraint

alter table public.test1 drop constraint test1_pkey
Posted by: Guest on December-04-2020
2

postgres alter table add primary key

-- To set a column as primary key:
ALTER TABLE distributors ADD PRIMARY KEY (tablename);
Posted by: Guest on November-02-2020

Code answers related to "make a column primary key postgres"

Code answers related to "SQL"

Browse Popular Code Answers by Language