A foreign key is a field in a relational table that matches a candidate key of another table. The foreign key can be used to cross-reference tables.
269
votes
7answers
139k views
Can foreign key constraints be temporarily disabled using T-SQL?
Are disabling and enabling foreign key constraints supported in SQL Server? Or is my only option to 'drop and then re-'create' the constraints?
78
votes
11answers
101k views
Cannot truncate table because it is being referenced by a FOREIGN KEY constraint?
Using MSSQL2005, Can I truncate a table with a foreign key constraint if I first truncate the child table(the table with the primary key of the FK relationship)?
I know I can use a DELETE without a ...
75
votes
5answers
39k views
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 what situation it will be useful.
For the sake of discussion let see some code.
CREATE TABLE parent (
...
57
votes
10answers
21k views
When/Why to use Cascading in SQL Server?
When setting up foreign keys in SQL Server, under what circumstances should you have it cascade on delete or update, and what is the reasoning behind it?
This probably applies to other databases as ...
57
votes
5answers
28k views
How do I see all foreign keys to a table or column?
In MySQL, how do I get a list of all foreign key constraints pointing to a particular table? a particular column? This is the same thing as this Oracle question, but for MySQL.
56
votes
23answers
10k views
Are foreign keys really necessary in a database design?
As far as I know, foreign keys (FK) are used to aid the programmer to manipulate data in the correct way. Suppose a programmer is actually doing this in the right manner already, then do we really ...
56
votes
3answers
40k views
Ruby on Rails. How do I use the Active Record .build method in a :belongs to relationship?
I have been unable to find any documentation on the .build method in Rails (i am currently using 2.0.2).
Through experimentation it seems you can use the build method to add a record into a has_many ...
50
votes
9answers
86k views
Mysql error 1452 - Cannot add or update a child row: a foreign key constraint fails
I'm having a bit of a strange problem, I'm trying to add a foreign key to one table that references another, but it is failing for some reason. With my limited knowledge of MySQL, the only thing that ...
43
votes
6answers
20k views
How to persist an enum using NHibernate
Is there a way to persist an enum to the DB using NHibernate? That is have a table of both the code and the name of each value in the enum.
I want to keep the enum without an entity, but still have a ...
37
votes
3answers
17k views
truncate foreign key constrained table
Why doesn't a TRUNCATE on mygroup work?
Event hough I have ON DELETE CASCADE SET I get:
ERROR 1701 (42000): Cannot truncate a table referenced in a foreign key constraint (mytest.instance, ...
37
votes
6answers
21k views
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 may be in there?
37
votes
7answers
16k views
Does Foreign Key improve query performance?
Suppose I have 2 tables, Products and ProductCategories. Both tables have relationship on CategoryId. And this is the query.
select p.ProductId, p.Name, c.CategoryId, c.Name AS Category
from Products ...
35
votes
4answers
14k views
Foreign Key naming scheme
I'm just getting started working with foreign keys for the first time and I'm wondering if there's a standard naming scheme to use for them?
Given these tables:
task (id, userid, title)
note (id, ...
33
votes
3answers
14k views
Are foreign keys indexed automatically in SQL Server?
Would the following SQL statement automatically create an index on Table1.Table1Column, or must one be explicitly created?
Database engine is SQL Server 2000
CREATE TABLE [Table1] (
. . .
...
31
votes
6answers
22k views
Foreign key constraints in Android using SQLite? on Delete cascade
I have two tables: tracks and waypoints, a track can have many waypoints, but a waypoint is assigned to only 1 track.
In the way points table I have a column called "trackidfk" which inserts the ...
30
votes
4answers
18k views
MySQL : show constraints on tables command
I have tables that I've tried setting PK FK relationships on but I want to verify this. How can I show the PK/FK restraints? I saw this manual page, but it does not show examples and my google search ...
29
votes
6answers
24k views
How to find foreign key dependencies in SQL Server?
How can I find all of the foreign key dependencies on a particular column?
What are the different alternatives (graphically in SSMS, queries/views in SQL Server, 3rd party database tools, code in ...
29
votes
4answers
5k views
Django “Cannot add or update a child row: a foreign key constraint fails”
I have a model Coupon, and a model Photo with a ForeignKey to it:
class Photo(models.Model):
coupon = models.ForeignKey(Coupon,
related_name='description_photos')
...
28
votes
1answer
15k views
How do I add a foreign key to an existing sqlite (3.6.21) table?
I have the following table:
CREATE TABLE child(
id INTEGER PRIMARY KEY,
parent_id INTEGER,
description TEXT);
How do I add a foreign key constraint on parent_id? Assume foreign keys are ...
27
votes
16answers
4k views
Why are foreign keys more used in theory than in practice?
When you study relational theory foreign keys are, of course, mandatory. But in practice, in every place I worked, table products and joins are always done by specifying the keys explicitly in the ...
26
votes
7answers
44k views
Foreign key refering to primary keys across multiple tables?
I have to two tables namely employees_ce and employees_sn under the database employees.
They both have their respective unique primary key columns.
I have another table called deductions, whose ...
26
votes
5answers
7k views
Why do Rails migrations define foreign keys in the application but not in the database?
If I define a Customer and Order model in which a Customer "has many" Orders and the Order "belongs to" the Customer, in Rails we talk about Order having a foreign key to the Customer through ...
24
votes
2answers
4k views
Django: Set foreign key using integer?
Is there a way to set foreign key relationship using the integer id of a model? This would be for optimization purposes.
For example, suppose I have an Employee model:
class Employee(models.Model):
...
24
votes
5answers
14k views
Can I have a foreign key referencing a column in a view in SQL Server?
In SQL Server 2008 and given
TableA(A_ID, A_Data)
TableB(B_ID, B_Data)
ViewC(A_or_B_ID, A_or_B_Data)
is it possible to define TableZ(A_or_B_ID, Z_Data) such that Z.A_or_B_ID column is constrained ...
23
votes
2answers
27k views
MySQL foreign key constraints, cascade delete
I want to use foreign keys to keep the integrity and avoid orphans (I already use innoDB).
How do I make a SQL statment that DELETE ON CASCADE?
If I delete a category then how do I make sure that it ...
23
votes
6answers
52k views
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 see the foreign keys (and thus which tables are referenced by this table), and I can view ...
23
votes
1answer
25k views
Defining foreign key relationships for Rails' models
I have a Comment class with a :foreign_key of post_id in the Post class.
class Comment < ActiveRecord::Base
belongs_to :post, :class_name => "Post", :foreign_key => "post_id", ...
22
votes
2answers
10k views
Foreign keys in django admin list display
If a django model contains a foreign key field, and if that field is shown in list mode, then it shows up as text, instead of displaying a link to the foreign object.
Is it possible to automatically ...
20
votes
8answers
7k views
Limit foreign key choices in select in an inline form in admin
Edited :-) Hopefully a bit clearer now.
The logic is of the model is:
A Building has many Rooms
A Room may be inside another Room (a closet, for instance--ForeignKey on 'self')
A Room can only ...
19
votes
5answers
17k views
MySQL terminology “constraints” vs “foreign keys” difference?
I'm looking at the MySQL docs here and trying to sort out the distinction between FOREIGN KEYs and CONSTRAINTs. I thought an FK was a constraint, but the docs seem to talk about them like they're ...
18
votes
4answers
39k views
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 key constraint? If not, how do I take care of that first?
GO
IF OBJECT_ID('dbo.[Course]','U') IS NOT NULL
...
18
votes
5answers
10k views
Foreign keys in MySQL?
I have been slowly learning SQL the last few weeks. I've picked up all of the relational algebra and the basics of how relational databases work. What I'm trying to do now is learn how it's ...
17
votes
7answers
16k views
MySQL Creating tables with Foreign Keys giving errno: 150
I am trying to create a table in MySQL with two foreign keys, which reference the primary keys in 2 other tables, but I am getting an errno: 150 error and it will not create the table.
Here is the ...
17
votes
1answer
17k views
MySQL foreign key to allow NULL?
I'm piecing together an image website. The basic schema's pretty simple MySQL, but I'm having some trouble trying to represent possible admin flags associated with an image ("inappropriate", ...
17
votes
10answers
6k views
SQL design around lack of cross-database foreign key references
For better or worse, we have a solution that relies on multiple databases that all reference a common administration database. Databases ship as part of modules, and not all modules are required for ...
16
votes
3answers
22k views
Force drop mysql bypassing foreign key constraint
I'm trying to delete all tables from a database except one, and I end up having the following error:
Cannot delete or update a parent row: a foreign key constraint fails
Of course I could trial ...
16
votes
3answers
6k views
Basics of Foreign Keys in MySQL?
Is there any good explanation of how to use MySQL's foreign key construct?
I don't quite get it from the MySQL docs themselves. Up until now I've been handling things like foreign keys with joins and ...
16
votes
1answer
28k views
How do I use on delete cascade in mysql?
I have a database of components. Each component is of a specific type. That means there is a many-to-one relationship between a component and a type. When I delete a type, I would like to delete all ...
16
votes
3answers
5k views
Renaming foreign-key columns in MySQL
We're trying to rename a column in MySQL (5.1.31, InnoDB) that is a foreign key to another table.
At first, we tried to use Django-South, but came up against a known issue:
...
15
votes
9answers
22k views
MySQL “ERROR 1005 (HY000): Can't create table 'foo.#sql-12c_4' (errno: 150)”
I was working on creating some tables in database foo, but every time I end up with errno 150 regarding the foreign key. Firstly, here's my code for creating tables:
CREATE TABLE Clients
(
client_id ...
15
votes
2answers
4k views
What is a proper naming convention for MySQL FKs?
Being that they must be unique, what should I name FK's in a MySQL DB?
14
votes
2answers
4k views
Foreign keys in mongo?
How do I design a scheme such this in MongoDB? I think there are no foreign keys!
14
votes
2answers
4k views
MYsql innodb foreign key between different databases
I would like to know if it's possible in innodb in mysql to have a table with foreign key that references another table in a different database ? And if so, how this can be done ?
14
votes
6answers
573 views
What is the right order of insertion/deletion/modification on dataset?
The MSDN claims that the order is :
Child table: delete records.
Parent table: insert, update, and delete records.
Child table: insert and update records.
I have a problem with that.
Example : ...
13
votes
6answers
10k views
Meaing of “n:m” and “1:n” in database design
In database design what do n:m and 1:n mean?
Does it have anything to do with keys or relationships?
13
votes
2answers
11k views
A way to check if foreign key exists in SQL 2005
Is there an easy way to check if a foreign key exists for a column in a table? I am writing a script which will add the foreign key only if it does not exist.
Thanks
13
votes
3answers
13k views
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 tables.
CREATE TABLE location (
locationID INT NOT NULL AUTO_INCREMENT PRIMARY KEY
...
) ...
13
votes
12answers
5k views
TSQL foreign keys on views?
I have a SQL-Server 2008 database and a schema which uses foreign key constraints to enforce referential integrity. Works as intended. Now the user creates views on the original tables to work on ...
13
votes
3answers
19k views
SQlite - Android - Foreign key syntax
I've been trying to get foreign keys working within my Android SQLite database. I have tried the following syntax but it gives me a force close:
private static final String TASK_TABLE_CREATE = ...
13
votes
1answer
4k views
Why use Foreign Key constraints in MySQL?
I was wondering,
What will be my motivation to use constraint as foreign key in MySQL, as I am sure that I can rule the types that are added?
Does it improve performance?