SQL Primary Key
A Primary key is the field in the table that uniquely identifies each row & record in the database table.A Primary keys must have UNIQUE values, and cannot contain NULL values. The table may contain only one primary key, which may have one or more fields. When multiple fields are used as the primary key, they are called a composite key. Create Primary Key Table CREATE TABLE Students( ID INT NOT…
View On WordPress
















