3
votes
9answers
202 views
Why do I need to use foreign key if I can use WHERE ?
A beginners' question about foreign key in MySQL.
In w3cshool it says,
A FOREIGN KEY in one table points to a PRIMARY KEY in another table.
And also there is WHERE,
WHERE id = page_id
So if …
1
vote
2answers
61 views
Mysql mapping table FK constraints
Hi,
I'm experiencing some difficulties with foreign key constraints. I have three tables:
Features
ID PK AUTO_INC
Title VARCHAR
Subscriptions
ID PK AUTO_INC
Title VARCHAR
…
1
vote
4answers
89 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 …
1
vote
5answers
155 views
To use a foreign key in MySQL or not to?
I have been coding with MySQL DBs for a couple years now and I have never used a foreign key. Now, I understand that a foreign key is like an ID on one table that corresponds with a primary key of …
0
votes
1answer
53 views
Foreign key constraints while dumping data
mysqldump --compact --no-create-info -h192.168.150.180 -uroot -p live pnlbus_stops | sed s/pnlbus_stops/bus_stops/g | mysql test
I am getting an error:
ERROR 1062 (23000) at line 1: Duplicate entry …
0
votes
1answer
89 views
MySQL InnoDB CASCADE?
Hi, I am starting to experiment with using InnoDB in web applications. I've setup some tables with a foreign key, but they are not behaving as expected.
Here are my table CREATE statements:
CREATE …
1
vote
4answers
124 views
SQL Server Foreign Key constraint benefits
We're designing a database in which I need to consider some FK(foreign key)
constraints. But it is not limited to
formal structuring and normalization.
We go for it only if it provides any
performance …
0
votes
1answer
21 views
SQL 2005: How to add same column and FK across multiple tables.
Hello
I need to add a Column "CurrentLifeCycleId" [int] into 73 tables and also add a Foreign Key from this new column to another single table "LifeCycle" Id column...is there a simple way I can do …
5
votes
5answers
3k views
How to persist an enum using NHibernate
Hi,
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 …
0
votes
0answers
29 views
Reproducible Deadlock Using Cascading Constraints
I am looking for code to generate a reproducible deadlock that occurs from the use of Cascading Constraints. I can find references online for the specific problem, and I have answered dozens of …
0
votes
2answers
27 views
Sql Browser with foreign key / references support?
I now want to create foreign keys for all of my mew DBs. So far i have been using sqlite and MyIasm DBs so i havent used a DB that supported it. I am thinking i should install and use a MySql server …
15
votes
16answers
765 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 …
1
vote
1answer
37 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 …
0
votes
3answers
53 views
Foreign Key Useful in SQLite?
I have two tables 'Elements' and 'Lists'
Lists has a primary key and a list name.
Elements has data pertaining to an individual entry in the list.
Elements needs a column that holds which list the …
1
vote
3answers
554 views
Django MTMField: limit_choices_to = other_ForeignKeyField_on_same_model?
I've got a couple django models that look like this:
from django.contrib.sites.models import Site
class Photo(models.Model):
title = models.CharField(max_length=100)
site = …
