Answers for "set primary key postgresql"

SQL
0

create table postgresql primary key

CREATE TABLE TABLE (
	column_1 data_type PRIMARY KEY,
	column_2 data_type,
	…
);
Posted by: Guest on April-24-2020
0

postgres 11 add primary key

ALTER TABLE [table_name] ADD PRIMARY KEY ( [col_name] );
Posted by: Guest on January-15-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language