Answers for "pg drop constraint"

SQL
1

remove contraints command psql

ALTER TABLE table_name DROP CONSTRAINT constraint_name;
Posted by: Guest on August-01-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 "SQL"

Browse Popular Code Answers by Language