SQL 2
Primary Key : Primary key is used to uniquely identify the each row in the table. Primary key column must contain unique value and can not be null means that column has to contain some value. If we want to define any column as primary key, we can define a primary key when we create table or modify it. One table can contain multiple primary key, it is called composite primary key. Syntax: create table table_name(column1 data type primary key, column2 datatype, ...); or create table table_name(column1 data type, column2 datatype, ..., primary key (column1)); Created... How to add primary ke...