Answers for "how to make foreign key in sql"

SQL
1

what is foreign key in sql

Foreign Key: 
It is a column that comes from a different table and
using Foreign key tables are related each other
It is the primary key of another table
It can be duplicate or null for another table
Posted by: Guest on January-07-2021
0

foreign key in sql dbms

FOREIGN KEY (fk_col_name) 
REFERENCES target_table_name (pk_col_name);
Posted by: Guest on August-04-2021
-1

how to make foreign key in sql

how to make primary key and  foreign key in sql
Posted by: Guest on December-20-2021

Code answers related to "how to make foreign key in sql"

Code answers related to "SQL"

Browse Popular Code Answers by Language