Generate A Primary Key In Mongoose Schema

You can think of a Mongoose schema as the configuration object for a Mongoose model. The following are all the valid SchemaTypes in Mongoose. The `type` Key. Learn how you can create and validate JSON schema in MongoDB, using third-party JSON schema validation tools and Studio 3T's Schema Explorer. You already have a requirement for a primary key, and there will be other properties that need to be of a certain type or that are mandatory for the collection. A customer collection, for example.

SQL PRIMARY KEY Constraint

The PRIMARY KEY constraint uniquely identifies each record in a table.

Primary keys must contain UNIQUE values, and cannot contain NULL values.

A table can have only ONE primary key; and in the table, this primary key can consist of single or multiple columns (fields).

SQL PRIMARY KEY on CREATE TABLE

The following SQL creates a PRIMARY KEY on the 'ID' column when the 'Persons' table is created:

MySQL:

Mongoose schema object
CREATE TABLE Persons (
ID int NOT NULL,
LastName varchar(255) NOT NULL,
FirstName varchar(255),
Age int,
PRIMARY KEY (ID)
);

SQL Server / Oracle / MS Access:

CREATE TABLE Persons (
ID int NOT NULL PRIMARY KEY,
LastName varchar(255) NOT NULL,
FirstName varchar(255),
Age int
);

To allow naming of a PRIMARY KEY constraint, and for defining a PRIMARY KEY constraint on multiple columns, use the following SQL syntax:

MySQL / SQL Server / Oracle / MS Access:

CREATE TABLE Persons (
ID int NOT NULL,
LastName varchar(255) NOT NULL,
FirstName varchar(255),
Age int,
CONSTRAINT PK_Person PRIMARY KEY (ID,LastName)
);

Note: In the example above there is only ONE PRIMARY KEY (PK_Person). However, the VALUE of the primary key is made up of TWO COLUMNS (ID + LastName).

SQL PRIMARY KEY on ALTER TABLE

Key

To create a PRIMARY KEY constraint on the 'ID' column when the table is already created, use the following SQL:

Generate A Primary Key In Mongoose Schema Chart

MySQL / SQL Server / Oracle / MS Access:

Primary

To allow naming of a PRIMARY KEY constraint, and for defining a PRIMARY KEY constraint on multiple columns, use the following SQL syntax:

MySQL / SQL Server / Oracle / MS Access:

ALTER TABLE Persons
ADD CONSTRAINT PK_Person PRIMARY KEY (ID,LastName);

Note: If you use the ALTER TABLE statement to add a primary key, the primary key column(s) must already have been declared to not contain NULL values (when the table was first created).

DROP a PRIMARY KEY Constraint

Mongoose Schema Documentation

To drop a PRIMARY KEY constraint, use the following SQL:

MySQL:

SQL Server / Oracle / MS Access:

Generate A Primary Key In Mongoose Schema 1