Top "Foreign-keys" questions

Foreign keys are a data integrity feature of relational (and SQL) databases.

Can a foreign key be NULL and/or duplicate?

Please clarify two things for me: Can a Foreign key be NULL? Can a Foreign key be duplicate? As fair …

sql sql-server oracle foreign-keys
MySQL DROP all tables, ignoring foreign keys

Is there a nice easy way to drop all tables from a MySQL database, ignoring any foreign key constraints that …

mysql foreign-keys innodb sql-drop
MySQL Removing Some Foreign keys

I have a table whose primary key is used in several other tables and has several foreign keys to other …

mysql foreign-keys constraints mysql-error-1025
SQL DROP TABLE foreign key constraint

If I want to delete all the tables in my database like this, will it take care of the foreign …

sql-server foreign-keys constraints database-table drop-table
When to use "ON UPDATE CASCADE"

I use "ON DELETE CASCADE" regularly but I never use "ON UPDATE CASCADE" as I am not so sure in …

sql foreign-keys foreign-key-relationship
How can I find which tables reference a given table in Oracle SQL Developer?

In Oracle SQL Developer, if I'm viewing the information on a table, I can view the constraints, which let me …

sql oracle foreign-keys oracle-sqldeveloper
How to remove constraints from my MySQL table?

I want to remove constraints from my table. My query is: ALTER TABLE `tbl_magazine_issue` DROP CONSTRAINT `FK_tbl_…

mysql foreign-keys constraints alter
How to create relationships in MySQL

In class, we are all 'studying' databases, and everyone is using Access. Bored with this, I am trying to do …

mysql sql foreign-keys relational-database
How to remove foreign key constraint in sql server?

I want to remove foreign key from another table so i can insert values of my choice. I am new …

sql-server database foreign-keys
The ALTER TABLE statement conflicted with the FOREIGN KEY constraint

I have a problem when trying to add a foreign key to my tblDomare table; what am I doing wrong …

sql sql-server database foreign-keys