Foreign Key in DBMS

Foreign Key

What is a Primary Key? 

The foreign key constraint is a column or list of columns which points to the primary key column of another table.

In this article , we will learn about Foreign Key in DBMS.

Foreign Key in DBMS

  • Sometimes you need to maintain and restrict only Same data in a table that is exactly the same column data of another table, this purpose is served by using a Foreign Key.
  • The main purpose of the foreign key is only those values are allowed in the present table that will match to the primary key column of another table.
Foreign Key in DBMS

Example to create a foreign key

Reference Table

CREATE TABLE CUSTOMERS1(
   ID   INT , 
  DEPT VARCHAR (20)     
   PRIMARY KEY (ID)
); 

Child Table

CREATE TABLE CUSTOMERS2(
   ID   INT ,            
   ADDRESS VARCHAR (20)     
   REFERENCES CUSTOMERS1(ID)
); 

CUSTOMERS1 table:

ID DEPT
65 Dairy
66 Snacks
67 Snacks

CUSTOMERS2 table:

ID ADDRESS
65 Hyderabad
66 Chennai
67 Hyderabad
 
  • ID column in the customers1 table is used as a foreign key  in the customers2 table which means all the ID values in customers2 must exist in the customers1 table 
  • An ID value that is not present in customers1 table is not allowed to be entered in the customers2 table ID column 
  • ID column of the customers1 table contains values as 65 66 67 now ID column in customers2 table must contain only these values that is 65 66 67 ,if the user enters other than this values in the ID column of the customers2 table it will raise an  error because customers1 table id column is a foreign key in the customers2 table 
  • Hence we can observe that a link is maintained between two tables that is if you want to enter any data in the foreign key column table then we must add the data in the primary key column of the parent table if it is not present 
 

Note: 

  • The column or  list of the column that is used as foreign key in the present table must be a primary key in another table 
  • The structure and data type of a PRIMARY KEY column of one table which used as a FOREIGN KEY in another table must be the same 
  • The table containing the foreign key is called the child table, and the table containing the candidate key is called the referenced or parent table.
 

Why foreign key ?

  • A foreign key is used to prevent activities that would destroy the link between tables 
  • A foreign key prevents invalid  data being inserted into the foreign key column because it restricts the user to enter only those values that are present in the primary key of another table.

Prime Course Trailer

Related Banners

Get PrepInsta Prime & get Access to all 200+ courses offered by PrepInsta in One Subscription

Get over 200+ course One Subscription

Courses like AI/ML, Cloud Computing, Ethical Hacking, C, C++, Java, Python, DSA (All Languages), Competitive Coding (All Languages), TCS, Infosys, Wipro, Amazon, DBMS, SQL and others

Checkout list of all the video courses in PrepInsta Prime Subscription

Checkout list of all the video courses in PrepInsta Prime Subscription