Referential Integrity Constraint is used to specify interdependencies between relations. This constraint specifies a column or list of columns as a foreign key of the referencing table.
A foreign key means the values in one table must also appear in another table. The foreign key in the child table will generally reference a primary key in the parent table.The referencing table is called the child table & referenced table is called the parent table.
Syntax: constraint <constraint name> references <primary table><primary key>