Answers for "add primary key in oracle"

SQL
0

oracle create table primary key

CREATE TABLE table_name
(
  column1 datatype null/not null,
  column2 datatype null/not null,
  ...
  CONSTRAINT constraint_name PRIMARY KEY (column1, column2, ... column_n)
);
Posted by: Guest on June-15-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language