Primary key is a single field or combination of fields that uniquely defines a record. None of the fields that are part of the primary key can contain a null value.A primary key column cannot contain NULL values.Each table can have only ONE primary key.We can create a primary key in table with the CREATE TABLE statement.SyntaxThe syntax to create a primary key using the CREATE TABLE statement:CREATE...