Answers for "add constraint postgres"

SQL
1

alter constraint postgres

/* Drop your constraint */
alter table yourtable drop constraint constraint_name;

/* Create new constraint */
alter table yourtable add constraint "constraint_name" FOREIGN KEY (some_id) REFERENCES yourtable(some_id) on delete cascade;
Posted by: Guest on February-02-2021
0

Postgres: Create Column add constraint to the column with Query Output

ALTER TABLE customers 
ADD COLUMN contact_name VARCHAR NOT NULL;
Posted by: Guest on December-02-2020

Code answers related to "add constraint postgres"

Code answers related to "SQL"

Browse Popular Code Answers by Language