Answers for "foreign key reference in sql"

SQL
2

alter table add column and foreign key mysql

ALTER TABLE database.table
  ADD COLUMN columnname INT DEFAULT(1),
  ADD FOREIGN KEY fk_name(fk_column) REFERENCES reftable(refcolumn) ON DELETE CASCADE;
Posted by: Guest on June-27-2020
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

Code answers related to "foreign key reference in sql"

Code answers related to "SQL"

Browse Popular Code Answers by Language