Answers for "what is the primary key for the table"

SQL
2

create table with primary key

CREATE TABLE student_id
(
Column1 datatype,
Column2 datatype,
Column3 datatype,

PRIMARY KEY (student_id);
Posted by: Guest on August-20-2021
1

what is primary key

PRIMARY KEY  -- unique identifier for the entire row of record in a table 
             -- can not be null and must be unique
Posted by: Guest on January-07-2021

Code answers related to "what is the primary key for the table"

Code answers related to "SQL"

Browse Popular Code Answers by Language