Answers for "postgres change type of primary key"

SQL
9

postgresql change column type

ALTER TABLE assets ALTER COLUMN name TYPE VARCHAR;
Posted by: Guest on May-26-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 "postgres change type of primary key"

Code answers related to "SQL"

Browse Popular Code Answers by Language