active questions tagged foreign-keys - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T14:19:14Z http://stackoverflow.com/feeds/tag/foreign-keys http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1884818/how-do-i-add-a-foreign-key-to-an-existing-sqlite-3-6-21-table 1 How do I add a foreign key to an existing sqlite (3.6.21) table? TheDeeno 2009-12-10T23:22:50Z 2009-12-11T00:31:08Z <p>I have the following table:</p> <pre><code>CREATE TABLE child( id INTEGER PRIMARY KEY, parent_id INTEGER, description TEXT); </code></pre> <p>How do I add a foreign key constraint on parent_id? Assume foreign keys are enabled.</p> <p>Most examples assume you're creating the table - I'd like to add the constraint to an existing one.</p> http://stackoverflow.com/questions/1883221/foreign-key-useful-in-sqlite 0 Foreign Key Useful in SQLite? CSharperWithJava 2009-12-10T19:01:35Z 2009-12-10T19:13:59Z <p>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.</p> <p>Elements needs a column that holds which list the element is in.</p> <p>I've read about SQL's foreign key constraint and figure that is the best way to link the tables, but I'm using SQLite which doesn't enforce the foerign key constraint.</p> <p>Is there a point to declaring the foreign key constraint if there is no enforcement?</p> http://stackoverflow.com/questions/1876013/why-are-foreign-keys-more-used-in-theory-than-in-practice 13 Why are foreign keys more used in theory than in practice? Petruza 2009-12-09T18:50:50Z 2009-12-10T17:30:26Z <p>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 query, instead of relying on foreign keys in the DBMS. </p> <p>This way, you could of course join two tables by fields that are not meant to be foreign keys, having unexpected results. </p> <p>Why do you think that is? Shouldn't DBMSs enforce that Joins and Products be made only by foreign keys?</p> <p>EDIT: Thanks for all the answers. It's clear to me now that the main reason for FKs is reference integrity. But if you design a DB, all relationships in the model (I.E. arrows in the ERD) become Foreign keys, at least in theory, whether or not you define them as such in your DBMS, they're semantically FKs. I can't imagine the need to join tables by fields that aren't FKs. <strong>Can someone give an example that makes sense?</strong></p> <p>PS: I'm aware about the fact that N:M relationships become separate tables and not foreign keys, just omitted it for simplicity's sake.</p> http://stackoverflow.com/questions/345401/django-mtmfield-limitchoicesto-otherforeignkeyfieldonsamemodel 1 Django MTMField: limit_choices_to = other_ForeignKeyField_on_same_model? saturdayplace 2008-12-05T22:32:52Z 2009-12-10T14:03:46Z <p>I've got a couple django models that look like this:</p> <pre><code>from django.contrib.sites.models import Site class Photo(models.Model): title = models.CharField(max_length=100) site = models.ForeignKey(Site) file = models.ImageField(upload_to=get_site_profile_path) def __unicode__(self): return self.title class Gallery(models.Model): name = models.CharField(max_length=40) site = models.ForeignKey(Site) photos = models.ManyToManyField(Photo, limit_choices_to = {'site':name} ) def __unicode__(self): return self.name </code></pre> <p>I'm having all kinds of <em>fun</em> trying to get the <code>limit_choices_to</code> working on the Gallery model. I only want the Admin to show choices for photos that belong to the same site as this gallery. Is this possible?</p> http://stackoverflow.com/questions/1732549/database-design-w-foreign-keys-question 1 Database Design w/ Foreign Keys Question unknown (google) 2009-11-13T23:28:38Z 2009-12-09T20:10:19Z <p>I'm trying to use foreign keys properly to maintain data integrity. I'm not really a database guy so I'm wondering if there is some general design principle I don't know about. Here's an example of what I'm trying to do:</p> <p>Say you want to build a database of vehicles with Type (car, truck, etc.), Make, and Model. A user has to input at least the Type, but the Make and Model are optional (if Model is given, then Make is required). My first idea is to set up the database as such:</p> <pre><code>Type: -id (PK) -description Make: -id (PK) -type_id (FK references Type:id) -description Model: -id (PK) -make_id (FK references Make:id) -description Vechicle: -id (PK) -type_id (FK references Type:id) -make_id (FK references Make:id) -model_id (FK references Model:id) </code></pre> <p>How would you setup the FKs for Vehicle to ensure that the Type, Make, and Model all match up? For example, how would you prevent a vehicle having (Type:Motorcyle, Make:Ford, Model:Civic)? Each of those would be valid FKs, but they don't maintain the relationships shown through the other tables' FKs.</p> <p>Also, because Model isn't required, I can't just store the model_id FK and work backwards from it.</p> <p>I'm not tied to the database design at all, so I'm open to the possibility of having to change the way the tables are set up. Any ideas?</p> <p>P.S. - I'm using mysql if anyone's interested, but this is more of a general question about databases.</p> <p>Edit (Clarifications):</p> <p>-type_id and make_id are needed in the vehicle table unless there is some way to figure those out in the case that model_id is null;</p> <p>-the relationships between type_id, make_id, and model_id need to be maintained. </p> http://stackoverflow.com/questions/869856/how-to-prevent-self-recursive-selection-for-fk-mtm-fields-in-the-django-admin 1 How to prevent self (recursive) selection for FK / MTM fields in the Django Admin qhyzcjc 2009-05-15T17:12:00Z 2009-12-08T21:18:57Z <p>Given a model with ForeignKeyField (FKF) or ManyToManyField (MTMF) fields with a foreignkey to 'self' how can I prevent <em>self</em> (recursive) selection within the Django Admin (admin). </p> <p>In short, it should be possible to <em>prevent</em> self (recursive) selection of a model instance in the admin. This applies when editing existing instances of a model, not creating new instances.</p> <p>For example, take the following model for an article in a news app;</p> <pre><code>class Article(models.Model): title = models.CharField(max_length=100) slug = models.SlugField() related_articles = models.ManyToManyField('self') </code></pre> <p>If there are 3 <code>Article</code> instances (title: a1-3), when editing an existing <code>Article</code> instance via the admin the <code>related_articles</code> field is represented by default by a html (multiple)select box which provides a list of ALL articles (<code>Article.objects.all()</code>). The user should only see and be able to select <code>Article</code> instances other than itself, e.g. When editing <code>Article</code> a1, <code>related_articles</code> available to select = a2, a3. </p> <p>I can currently see 3 potential to ways to do this, in order of decreasing preference;</p> <ol> <li>Provide a way to set the queryset providing available choices in the admin form field for the <code>related_articles</code> (via an exclude query filter, e.g. <code>Article.objects.filter(~Q(id__iexact=self.id))</code> to exclude the current instance being edited from the list of related_articles a user can see and select from. Creation/setting of the queryset to use could occur within the constructor (<code>__init__</code>) of a custom <code>Article ModelForm</code>, or, via some kind of dynamic <code>limit_choices_to Model</code> option. This would require a way to grab the instance being edited to use for filtering.</li> <li>Override the <code>save_model</code> function of the <code>Article Model</code> or <code>ModelAdmin</code> class to check for and remove itself from the <code>related_articles</code> before saving the instance. This still means that admin users can see and select all articles including the instance being edited (for existing articles).</li> <li>Filter out self references when required for use outside the admin, e.g. templates.</li> </ol> <p>The ideal solution (1) is currently possible to do via custom model forms outside of the admin as it's possible to pass in a filtered queryset variable for the instance being edited to the model form constructor. Question is, can you get at the <code>Article</code> instance, i.e. 'self' being edited the admin before the form is created to do the same thing.</p> <p>It could be I am going about this the wrong way, but if your allowed to define a FKF / MTMF to the same model then there should be a way to have the admin - <em>do the right thing</em> - and prevent a user from selecting itself by excluding it in the list of available choices.</p> <p><strong>Note:</strong> Solution 2 and 3 are possible to do now and are provided to try and avoid getting these as answers, ideally i'd like to get an answer to solution 1.</p> http://stackoverflow.com/questions/1827897/sql-query-to-find-users-that-dont-have-any-subscription-to-a-specified-list-man 1 SQL query to find users that don't have any subscription to a specified list (many-to-many). Sergei Kozlov 2009-12-01T18:16:43Z 2009-12-02T15:55:29Z <p>Having two tables, "users" and "lists", and a many-to-many "subscriptions" table relating users to lists (thus having foreign keys <code>user_id</code> and <code>list_id</code>), what would be a single SQL query to find all the users that don't have any subscription with a specific <code>list_id</code> (naturally including the users that have no subscriptions at all)?</p> http://stackoverflow.com/questions/18717/are-foreign-keys-really-necessary-in-a-database-design 23 Are Foreign Keys really necessary in a database design? Niyaz 2008-08-20T20:18:08Z 2009-12-01T23:22:28Z <p>As far as I know, foreign keys 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 need the concept of foreign keys?</p> <p>Are there any other uses for foreign keys? Am I missing something here?</p> http://stackoverflow.com/questions/1809629/necessity-of-foreign-key-in-this-caseinnodb-mysql 1 Necessity of foreign key in this case(innoDB/mysql) Saif Bechan 2009-11-27T16:27:33Z 2009-11-27T20:48:32Z <p>Hi, i recently migrated my whole DB from myisam to innodb. I am fairly new to all this so i have a question regarding the use of the foreign key.</p> <p>Lets say i have two tables: users, messages.</p> <h1>users </h1> <p><code>id (pr_key)</code><br> <code>name </code></p> <h1>messages</h1> <p><code>id (pr_key)</code><br> <code>user_id</code><br> <code>message</code></p> <p>The id fields are both auto incremented. </p> <p>So now in my queries i join these 2 tables already. Is it still necessary to place a foreign key here, i actually don't see a point. Does it have performance benefits.</p> <p>If i choose to put a foreign key here i assume i have to make the pr_key of messages both id, and user_id. </p> <blockquote> <p>Will adding the other prim_key not just take more space, and resulting in slower performance.</p> <p>Now if the table has two pr_keys, and i only query on one of them, will i still have the same performance benefits. Or do i need explicitly use the two keys.</p> </blockquote> <p>I know in this example i will be searching on user_id so it is maybe smart to index this anyway. But what if the field is a field where there are no searches on. Is it still good to place a multiple primary key on this field, just for the foreign hey relation.</p> <p>Thank you!</p> http://stackoverflow.com/questions/1003661/mysql-error-1005-on-table-create-wtf 0 MySQL error 1005 on table create -- wtf sw3432 2009-06-16T20:05:06Z 2009-11-26T06:07:07Z <p>My table definition:</p> <pre><code>CREATE TABLE x ( a INT NOT NULL, FOREIGN KEY (a) REFERENCES a (id) ON UPDATE CASCADE ON DELETE CASCADE ) ENGINE = InnoDB; </code></pre> <p>which produces the following error:</p> <pre><code>ERROR 1005 (HY000): Can't create table './abc/x.frm' (errno: 150) </code></pre> <p>What does this mean?</p> http://stackoverflow.com/questions/1669681/sql-server-ce-nvarchar-foreign-keys-with-trailing-whitespace 1 SQL Server CE nvarchar foreign keys with trailing whitespace Whatsit 2009-11-03T19:41:04Z 2009-11-26T01:37:45Z <p>In SQL Server CE, foreign key constraints on nvarchar fields are only enforced after dropping the trailing whitespace. This means that if the PK is "foo " I can insert "foo" into the FK.<br /> Why is this the case? It seems to badly undermine the data integrity the foreign key system is supposed to provide.</p> <p>Is there any way to enforce a foreign key constraint such that whitespace is included in the comparison? What options do I have for working around this behavior?<br /> Replacing the FK fields with ints is the most obvious solution, but is a last resort (in my case) due to the way the related application has been implemented.</p> http://stackoverflow.com/questions/278982/are-foreign-keys-indexed-automatically-in-sql-server 4 Are foreign keys indexed automatically in SQL Server? Mike 2008-11-10T20:01:30Z 2009-11-24T15:56:02Z <p>Would the following SQL statement automatically create an index on Table1.Table1Column, or must one be explicitly created?</p> <p>Database engine is SQL Server 2000</p> <pre><code> CREATE TABLE [Table1] ( . . . CONSTRAINT [FK_Table1_Table2] FOREIGN KEY ( [Table1Column] ) REFERENCES [Table2] ( [Table2ID] ) ) </code></pre> http://stackoverflow.com/questions/1786716/entity-framework-adding-a-scalar-property-which-is-equal-to-a-fk-id 0 Entity Framework: Adding a scalar property which is equal to a FK id vdh_ant 2009-11-23T23:10:32Z 2009-11-24T02:01:46Z <p>Hi guys </p> <p><strong>Short Question:</strong></p> <p>Basically I am trying to add a scalar property to my entity which holds the ID of a FK entity. </p> <p><strong>What I have tried to do thus far:</strong></p> <p>What I have tried so far is adding the scalar property (called ChildId) and mapped it to the matching column in the database. Now as you can imagine I get some exceptions when I try and do this because entity framework complains that the FK id is being managed in two places, once through x.ChildId and the other through x.Child.ChildId.</p> <p>Now I get why it is doing this but I need some why to be able to have a scalar property which is automatically populated with the ChildId.</p> <p><strong>What I know I could do but really don't want to:</strong></p> <p>I realize that I could write a linq query that does something like the following (where I have implemented the other half of the partial class and added a property there called ChildId):</p> <pre><code>from x in db.Parent select new Parent { ParentName = x.ParentName, ..., ChildId = x.Child.ChildId } </code></pre> <p>But this is extremely messy, particular when I have 30 odd queries that return a parent object, this mapping would need to be repeated for each query...</p> <p>Also I realize that after I have executed the query I could go something like:</p> <pre><code>var childId = parent.Child.Id; </code></pre> <p>But this would cause either an extra query to be triggered, or if I was proactively loading child, and in either case I would be pulling out a lot more data than I need when I only want the ID... </p> <p><strong>The required end result:</strong></p> <p>So how do I get around some of these limitations so that I can write my queries like so (or something very similar):</p> <pre><code>from x in db.Parent select x </code></pre> <p>And have it so that I can either go:</p> <pre><code>var childId = parent.Child.Id; //Where in this case the only property retrieved would be the Id //Or var childId = parent.ChildId; </code></pre> <p>Cheers Anthony </p> <p>EDIT:</p> <p>Hey thanks for the reply... </p> <p>I just figured this out for myself as well. Basically I was thinking that if EF supports lazy loading it must be storing the ID somewhere. Then it clicked that it must be in the reference... Hence for me it worked out being something like: </p> <pre><code>destination.PlanTypeId = (int)source.PlanTypeReference.EntityKey.EntityKeyValues[0].Value; </code></pre> <p>Also thanks for the idea of creating the extension property... will be very useful.</p> http://stackoverflow.com/questions/1783700/sql-server-self-reference-fk-trigger-instead-of-on-delete-cascade 0 SQL Server: Self-reference FK, trigger instead of ON DELETE CASCADE Markos Fragkakis 2009-11-23T15:09:15Z 2009-11-23T19:24:11Z <p>Hello,</p> <p>I need to perform an ON DELETE CASCADE on my table named CATEGORY, which has the following columls CAT_ID (BIGINT) NAME (VARCHAR) PARENT_CAT_ID (BIGINT)</p> <p>PARENT_CAT_ID is a FK on CAT_ID. Obviously, the lovely SQL Server does not let me use ON DELETE CASCADE claiming circular or multiple paths to deletion.</p> <p>A solution that I see often proposed is triggers. I made the following trigger:</p> <pre><code>USE [ma] GO /****** Object: Trigger [dbo].[TRG_DELETE_CHILD_CATEGORIES] Script Date: 11/23/2009 16:47:59 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO ALTER TRIGGER [dbo].[TRG_DELETE_CHILD_CATEGORIES] ON [dbo].[CATEGORY] FOR DELETE AS SET NOCOUNT ON /* * CASCADE DELETES TO '[Tbl B]' */ DELETE CATEGORY FROM deleted, CATEGORY WHERE deleted.CAT_ID = CATEGORY.PARENT_CAT_ID </code></pre> <p>When I manually delete a category with child categories, I get the following exception:</p> <p><img src="http://dl.dropbox.com/u/1535349/screenshots/skata1.PNG" alt="exception"></p> <p>Any idea what is wrong with my trigger?</p> <p><strong>UPDATE:</strong> Sorry for the edit, but I have another column CATEGORY.CAT_SCH_ID, which is a FK of another table CAT_SCH.ID. This FK has a CASCADE DELETE as well, meaning that once I delete a CAT_SCH, its CATEGORies must also be deleted. So, I get this error when I define the trigger:</p> <p>*Cannot create INSTEAD OF DELETE or INSTEAD OF UPDATE TRIGGER 'TRG_DEL_CATEGORY_WITH_CHILDREN' on table 'CATEGORY'. This is because the table has a FOREIGN KEY with cascading DELETE or UPDATE.*</p> <p>Any ideas?</p> http://stackoverflow.com/questions/320194/support-for-foreign-key-constraint-in-rails 1 Support for foreign key constraint in Rails Lakshmi 2008-11-26T10:00:48Z 2009-11-22T08:25:21Z <p>In Ruby on Rails, how to add foreign key constraint in migration?</p> http://stackoverflow.com/questions/1776079/sql-drop-table-foreign-key-constraint 0 SQL DROP TABLE foreign key constraint Polly Hollanger 2009-11-21T17:15:07Z 2009-11-21T18:12:13Z <p>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?</p> <pre><code>GO IF OBJECT_ID('dbo.[Course]','U') IS NOT NULL DROP TABLE dbo.[Course] GO IF OBJECT_ID('dbo.[Student]','U') IS NOT NULL DROP TABLE dbo.[Student] </code></pre> http://stackoverflow.com/questions/1769757/foreign-keys-in-sql-server-2005 0 foreign keys in sql server 2005 Bal 2009-11-20T11:02:59Z 2009-11-20T12:42:18Z <p>I having trouble creating a foreign key in sql 2005.</p> <p>my primary key table has a primary key that spans 2 columns.</p> <p>I want to create my foreign key so it references a column in my primary table but I want to specify a static value for the second column - is this possible?</p> http://stackoverflow.com/questions/1296123/foreign-key-triggers-in-sqlite 1 Foreign Key Triggers in SQLite Ryan McKay 2009-08-18T19:55:36Z 2009-11-19T01:45:52Z <p>SQLite comes with a utility, genfkey, that will generate triggers to enforce foreign key constraints. Here is the <a href="http://www.sqlite.org/cvstrac/fileview?f=sqlite/tool/genfkey.c" rel="nofollow">source</a>. There is a README as well, just change previous url to f=sqlite/tool/genfkey.README (stackoverflow only letting me post one url)</p> <p>Two pairs of triggers are generated per FK: BEFORE INSERT and BEFORE UPDATE on referencing table, and BEFORE DELETE and <b>AFTER</b> UPDATE on referenced table. I can't figure out why the last trigger is AFTER instead of BEFORE like the others. See line 741 in the source, or just search for "AFTER", it's the only instance in the file.</p> <p>Its not a huge deal - if you're in a transaction, and the AFTER trigger generates an error, you can still roll back. I'm just wondering if anybody has any ideas why it's different.</p> http://stackoverflow.com/questions/1759951/non-null-foreign-keys-as-database-standard 2 Non-Null Foreign Keys as Database Standard Travis 2009-11-18T23:50:12Z 2009-11-19T00:01:38Z <p>Background: today, an issue arose while using SQL Server Reporting Services. It seems that SSRS drop-down parameters in the report viewer don't allow you to indicate a (null) option so that you can see a report where that parameter is null. Basically, table A is a table nullably referencing table B; since the report uses table B to populate the drop-down, there are no nulls to show as an option, and thus you can't select all the the A's that have a null B.</p> <p>My real question comes from the potential knee-jerk reaction to the above problem by a management type to whom I'm answering. When I explained what was going on, she issued a new mandate that all foreign keys must be non-null and that every entity should have a "default" record inserted, a new standard seemingly to solve this problem in the reporting tool. Basically, if you have a Cat table, then Cat.Owner should never be null, but should instead reference a default record in the Person table, the "default" Person.</p> <p>While this may help the SSRS problem, it may hurt development/maintenance of services and applications using the database, since they'd now not only have to account for nulls (which were allowed to this point) but also have look for and properly use the "default" record. I thought about trying to talk her off the mandate, but I'd like to glean some information from the experienced before I decide to do that. </p> <p>Can somebody weigh in on what this may help or hurt? </p> <p>Anyone had this as a database standard? Any issues, development or otherwise, I should be mindfull of?</p> http://stackoverflow.com/questions/1621024/doctrine-migration-foreign-keys 0 Doctrine migration foreign keys Ofir 2009-10-25T14:17:41Z 2009-11-17T22:37:26Z <p>In PHP Doctrine, is it possible to create one migration class that creates a table and creates a foreign key on that table? For some reason, I can't get the foreign key to work ...</p> <pre><code>class Migration_001 extends Doctrine_Migration_Base { public function up() { $this-&gt;createTable('table_name', array(...)) $this-&gt;createForeignKey('table_name', 'foreign_key_name', array(...)) } public function down() { $this-&gt;dropForeignKey('table_name', 'foreign_key_name') $this-&gt;dropTable('table_name') } } </code></pre> <p>Thanks, Ofir</p> http://stackoverflow.com/questions/256978/how-to-persist-an-enum-using-nhibernate 4 How to persist an enum using NHibernate Meidan Alon 2008-11-02T15:30:50Z 2009-11-17T03:28:28Z <p>Hi,</p> <p>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.</p> <p>I want to keep the enum without an entity, but still have a foreign key (the int representation of the enum) from all other referencing entities to the enum's table.</p> http://stackoverflow.com/questions/1730837/can-someone-explain-mysql-foreign-keys 0 Can someone explain MySQL foreign keys Ross 2009-11-13T17:45:12Z 2009-11-13T18:27:41Z <p>I know what they are my question is, how do you link them or are they automatically linked when you have identical names in different tables. Here is an example:</p> <p>Say I have an [orders] table and a [customer] table. Each row in the [orders] table has a customer_id number which is associated with the customer_id in the [customer] table. So how do I get the customer information by referencing the order? What would be the sql query?</p> http://stackoverflow.com/questions/1730283/rename-foreign-key-system-name-in-sql-server-management-studio-is-failing 1 Rename foreign key system name in SQL Server Management Studio is failing hal10001 2009-11-13T16:23:32Z 2009-11-13T17:53:41Z <blockquote> <p>The method or operation is not permitted.</p> </blockquote> <p>I assume this is a permission's issue, but I can't figure out where I would change it. It is strange because I can rename an index with no issue.</p> <p>EDIT:</p> <p>If you're looking at a table, and you see "Columns, Keys, Constraints, etc.", this is under Keys, and it is the system name that I presume SQL is using to identify the foreign key name I gave the column.</p> http://stackoverflow.com/questions/1721841/does-mysql-innodb-always-require-an-index-for-each-foreign-key-constraint 1 Does MySQL InnoDB always require an index for each foreign key constraint? JS London 2009-11-12T12:29:24Z 2009-11-12T12:35:50Z <p>I am using phpMyAdmin. In order to set up a foreign key constraint with InnoDB (under the "Relation View" link on the Structure tab) it appears that I need to add an index for the field to which I want to add the restraint. This obviously has an impact on performance of inserts/updates on the table, particularly if there are several constraints I want to add. Is it possible to specify a foreign key constraint or relational integrity in InnoDB without the need to create an Index for the required field?</p> <p>Many thanks JS, London</p> http://stackoverflow.com/questions/1350990/how-to-add-composite-primary-key-to-table 0 How to add composite primary key to table Domnic 2009-08-29T09:45:30Z 2009-11-11T21:58:58Z <pre><code>create table d(id numeric(1), code varchar(2)) </code></pre> <p>After I create the above table how can I add a composite primary key on both fields and also a foreign key?</p> http://stackoverflow.com/questions/1599842/problem-with-foreign-key-constraint 0 Problem with foreign key constraint Rob 2009-10-21T10:02:44Z 2009-11-10T14:52:43Z <p>I am getting error #1005 - Can't create table (errno: 150).</p> <p>I have been through the checklist of:</p> <ul> <li>both tables are InnoDB</li> <li>the columns are the same type (INT)</li> <li>attributes are the same (UNSIGNED NOT NULL)</li> <li>the collation is the same</li> <li>I have tried with indexes on the foreign keys, it still doesn't work (and they shouldn't be needed for MySQL 5)</li> </ul> http://stackoverflow.com/questions/1707662/how-to-insert-foreign-key-value-into-table 0 How to insert foreign key value into table Ritz 2009-11-10T12:39:16Z 2009-11-10T12:45:59Z <p>I want to insert the product in the product table but the product table is also having a category Id which is the foreign key ,How will I insert the foreign key through code please tell me.</p> <p>i have used this syntax</p> <pre><code>NewItemToInsert.tbl_PRODUCT_CATEGORY.category_id = Convert.ToInt32 (categoryId); </code></pre> <p>Categories are displayed in the dropdown list on the add product page and to bind that dropdown I have written a class.</p> <p>Category Id which I want to insert already exists in the Category table and that Id I want to add into Product table</p> <p>Please give me useful suggesstions</p> <p>Thanks Ritz</p> http://stackoverflow.com/questions/1405206/django-manually-adding-a-foreign-key-column-newcolumnidrefsid4bfb2ece 0 django: manually adding a foreign key column (newcolumn_id_refs_id_4bfb2ece ?) Hoff 2009-09-10T13:09:29Z 2009-11-09T21:19:27Z <p>Hi there,</p> <p>I need to add a foreign key field to an existing django model/postgres table. As per the django documentation, I ran the 'sqlall myapp' command to 'work out the difference'. </p> <p>The obvious difference is that the table in question now has an extra column with a new contraint, which looks like this:</p> <pre><code>ALTER TABLE "myapp_mytable" ADD CONSTRAINT newcolumn_id_refs_id_4bfb2ece FOREIGN KEY ("newcolumn_id") REFERENCES "myapp_theothertable" ("id") DEFERRABLE INITIALLY DEFERRED; </code></pre> <p>Before messing with my database, I'd like to understand that statement, in particular, what does the last part of <code>newcolumn_id_refs_id_4bfb2ece</code> refer to?</p> <p>Thanks,</p> <p>Martin</p> http://stackoverflow.com/questions/1697958/linq-to-sql-table-relationships 0 Linq To SQL: Table relationships Jeremy 2009-11-08T21:22:08Z 2009-11-08T22:31:33Z <p>Assume I have a two tables, A and B. Table A has a primary Key called A_ID of type int, and table B has a foreign key called A_ID. </p> <p>When I add the two tables to a Linq To SQL data context class it correctly creates the classes and the association between them. </p> <p>My question is, class B will have a property of type int called A_ID. It will also have property called A, of type A. </p> <p>Now, if at runtime, I make a linq to sql call which populates an instance of B, B.A_ID and B.A.A_ID will be the same value. What is stopping a developer from making some mistake and putting a different value in B.A_ID than is in B.A.A_ID. In a database you couldn't do this because of the foreign key constraints, but how do the Linq to sql classes enforce those constraints on the client side?</p> http://stackoverflow.com/questions/1691034/optimize-join-sentence-with-foreign-keys-and-show-records-with-nulls 2 Optimize Join sentence with foreign keys, and show records with nulls Enrique 2009-11-06T22:46:53Z 2009-11-08T05:43:24Z <p>Hi guys I have the following structure</p> <pre><code>SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO"; CREATE TABLE IF NOT EXISTS `sis_param_tax` ( `id` int(5) NOT NULL auto_increment, `description` varchar(50) NOT NULL, `code` varchar(5) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=7; CREATE TABLE IF NOT EXISTS `sis_param_city` ( `id` int(4) NOT NULL auto_increment, `name` varchar(100) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=3 ; CREATE TABLE IF NOT EXISTS `sis_supplier` ( `id` int(15) NOT NULL auto_increment, `name` varchar(200) NOT NULL, `address` varchar(200) default NULL, `phone` varchar(30) NOT NULL, `fk_city` int(11) default NULL, `fk_tax` int(11) default NULL, PRIMARY KEY (`id`), KEY `fk_city` (`fk_city`), KEY `fk_tax` (`fk_tax`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ; ALTER TABLE `sis_supplier` ADD CONSTRAINT `sis_supplier_ibfk_4` FOREIGN KEY (`fk_tax`) REFERENCES `sis_param_tax` (`id`) ON DELETE SET NULL ON UPDATE CASCADE, ADD CONSTRAINT `sis_supplier_ibfk_3` FOREIGN KEY (`fk_city`) REFERENCES `sis_param_city` (`id`) ON DELETE SET NULL ON UPDATE CASCADE; </code></pre> <p><strong><em>My questions are</em></strong></p> <p><strong>1.</strong> This structure allows me to have a supplier with city and tax fields = null (in case user didn't set these values). Right?</p> <p><strong>2.</strong> If I delete "X" city, supplier's fk_city with city="X" are set to null, same with fk_tax. Right?</p> <p><strong>3.</strong> I want to optimize (<strong><em>IF POSSIBLE</em></strong>) the following join sentence, so I can show suppliers whom have fk_city and/or fk_tax = NULL</p> <pre><code>SELECT DISTINCT sis_supplier.id, sis_supplier.name, sis_supplier.telefono, sis_supplier.address, sis_supplier.phone, sis_supplier.cuit, sis_param_city.name AS city, sis_param_tax.description AS tax, sis_supplier.fk_city, sis_supplier.fk_tax FROM sis_supplier LEFT OUTER JOIN sis_param_city ON sis_supplier.`fk_city` = sis_param_city.id LEFT OUTER JOIN `sis_param_tax` ON sis_supplier.`fk_tax` = `sis_param_tax`.`id` </code></pre> <p>Thanks a lot in advance,</p>