Answers for "create table on primary equivalent in postgres"

SQL
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
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

Code answers related to "create table on primary equivalent in postgres"

Code answers related to "SQL"

Browse Popular Code Answers by Language