Answers for "creating a primary key in sql"

SQL
0

primary key sql

CREATE TABLE student

(

Roll integer (15) NOT NULL PRIMARY KEY,

Name varchar (255),

Class varchar (255),

Contact No varchar (255),

);
Posted by: Guest on July-10-2020
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 "creating a primary key in sql"

Code answers related to "SQL"

Browse Popular Code Answers by Language