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.

learn more… | top users | synonyms (3)

1
vote
1answer
102 views

Primary and foreign keys in xml schema

Hello Am new to XML schema am trying to insert primary and foreign keys in XSD schema file below. Primary key is StudentID. Foreign Keys are courseID, AddressID, GradeID. <?xml ...
2
votes
1answer
53 views

Describing the purpose of a foreign key in the database design [closed]

I'm designing a database using MySQL Workbench and am defining many foreign keys. I'm curious if there's a best practice for describing the purpose of the relationship. Currently, all foreign key ...
0
votes
1answer
33 views

using @Embedabble with a foreign key and manyToMany relation

I wrote an example for the code i am trying to implement, i get an error with Constraint "Student_Teacher_FK" already exists. the @embiddable class has a foreign key that is created twice with ...
3
votes
1answer
59 views

Mysql Alter table timing depending on presence of foreign keys

We have a situation where we have a table A and B, where A has few thousand rows ( approx 50k) and B has few million rows (approx 5M). Table B has a column which points to Table A's primary key. We ...
0
votes
1answer
29 views

how to count repeated instances of foreign-key ID in a table

I want to find out the course title which is offered the most, by counting the course_id in the offering table. Course: +-----------+--------------+-----------------+-------------+ | course_id | ...
0
votes
1answer
55 views

How can I add seed data with correct relationships?

I'm creating forum software using Ruby on Rails. I'm stuck on adding seed data to my database with the correct database relations. A forum has many topics, and a topic belongs to a forum. That is a ...
0
votes
0answers
62 views

How can I solve this MySQL Foreign Key Error 150?

Question is now resolved Here is what was wrong: I had set the "id" column on the "files" table to "not null". I then told the foreign key to, should the parent be deleted, set the "id" column to ...
1
vote
1answer
54 views

What does the ON DELETE and ON UPDATE mean where setting a FOREIGN KEY in MySQL?

I'm trying to read about how to use FOREIGN KEYS in MySQL. I see in many places that they have ON DELETE and ON UPDATE. What's the difference between them? What exactly do they do? Here is a small ...
1
vote
1answer
45 views

Select unrelated ids on relate / lookup table

I have seen various examples for this, but I can't find a definitive example of how to return all rows from table_A that are not related to a row in table_B using relate table_A_B without a given ...
1
vote
1answer
46 views

Unable to use natural keys in django foreign key serialization

So the thing is I have a class which has a foreign key. This is my code class Proxy(models.Model): class Meta: db_table = 'Proxy' equipment = models.ForeignKey('Equipment', ...
0
votes
1answer
23 views

Mysql Intermediate Table- Better to Have Repeating rows?

In a database, I have a username table and I have jurisdiction table. I also have intermediate table to assign a user to one or more jurisdictions. user table -------------- userID first_name jurID ...
1
vote
2answers
136 views

join two table with a primary and foreign keys with a different format

Two tables: employee id name 1 steve 2 rob 3 bell position position_id employee_id position 1 e1 manager 2 e2 seller 3 e3 director the ...
0
votes
1answer
65 views

Failure in using alter table to add partition

ref_I have a table having structure as below: CREATE TABLE `child_table` ( `id` int(11) NOT NULL AUTO_INCREMENT, `value` int, `ref_id` int, PRIMARY KEY (`id`), KEY `ref_id` ...
0
votes
0answers
52 views

foriegn key issue - phonegap

Now iam working in a phoneGap project, in page1.html i have the following code to save some datafields from page1.html to localDB, tx.executeSql('CREATE TABLE IF NOT EXISTS tableOne (value1 INTEGER ...
0
votes
0answers
26 views

Foreign key with a static value

I have 3 tables. The two tables tab1 and tab2 contains some data. The calender links the data to a date. Is it possible to create a Foreign Key containing the id and a static kat? I image a entry ...
0
votes
1answer
82 views

MVC3 Dropdownlist null in post

I have been working on this for several days and haven't got anywhere. My Movies model keeps failing in my post, and it's because my dropdownlist value is null for parentGenre. I checked firebug and ...
0
votes
1answer
27 views

A foreign key constraint fails with no foreign keys

I'm trying to execute this query: DROP TABLE categories` But I've got an error: #1217 - Cannot delete or update a parent row: a foreign key constraint fails I also have a different table ...
1
vote
1answer
73 views

MySQL: Foreign key constraint getting ignored in InnoDB

I am creating a table called fac_master which has a foreign key which refers to dept_id of dept_master. The table is getting created but foreign key is not getting enforced on this table. I also have ...
0
votes
0answers
40 views

ajaxCRUD.com multiple relationships

I'm really not sure I'll find someone to help with that but let's give it a try! I'm using the CRUD script from ajaxCRUD.com and I want to create more than one relationship between my tables.But, ...
1
vote
1answer
52 views

ServiceStack OrmLite + Foreign Key

I've got the asp.net forms authentication tables in place, and I'd like to create a FK to one of the tables. Is this possible without creating a type to be used with the attribute?
0
votes
3answers
177 views

MySQL one-to-many relationship. Different table, or PHP handling?

I am creating a MySQL database in which I have two tables, one for blogs, and one for their locations. What I have done is a field in blogs which is a string of location ids separated by commas: ...
0
votes
1answer
156 views

CakePHP automatically filling a field with the value of another

I'm using Cake 2.3.1. In my Events/add view i have this field: echo $this->Form->input('customer_id', array('label' => 'Customer: ')); which is a input select form, which contains all my ...
0
votes
1answer
28 views

Django: FOO_set.all() for filter() instead of get()

I would like to look up reviews for items, which users have left in my Django app. The models are quite simple: models.py class Item(models.Model): name = models.CharField(_('Item'), ...
0
votes
1answer
34 views

How to transfer all the child objects before deleting the foreignkey object in Django?

I am aware that the on_delete option can set another foreignkey object as replacement when deleting the existing foreignkey. But what my client want is this flow: Click delete button (from change ...
-1
votes
1answer
54 views

Fluent API, define a primary key as foreign key

I have this two models : //Primary AND Foreign key 1 public int UserID {get; set;} //Primary AND Foreign key 2 public int ProductID {get; set;} I don't know how to set this two column as primary ...
0
votes
2answers
35 views

create a table relation on itself in mysql

I have a table like so: CREATE TABLE `jngi_category` ( `id` int(11) NOT NULL AUTO_INCREMENT, `Name` varchar(50) NOT NULL, `parent` int(11) NOT NULL, PRIMARY KEY (`id`) ) ...
1
vote
1answer
57 views

MySQL FOREIGN KEY assistance

I'm working on a database assignment and have run into this error. The database should look like... Legend: **Primary Key** *Foreign Key . Movies (**title, year**, length, genre, *studioName, ...
0
votes
0answers
54 views

How to get primary key field name for null EntityReference?

I've made the following function to assign value to a foreign key reference (I know, it's dirty and does not work for compound keys): void setFk(dynamic tbl,object id){ var ...
0
votes
1answer
35 views

SQL Server FK same table

I'm thinking of adding a relationship table to a database and I'd like to include a sort of reverse relation functionality by using a FK pointing to a PK within the same table. For example, Say I ...
-1
votes
1answer
163 views

Cannot attach file as database. SQL Azure

I followed this tutorial when learning SQL Azure and completed it successfully: Windows Azure Tutorial I wanted to create a similar application but implement a more complex database using the code ...
0
votes
2answers
101 views

Cardinality between entities

I'm learning for a test at school from database systems, and I'havent found similar example on the Internet and I'm not sure. What is the cardinality of following relationship ? I would say 1:1. ...
0
votes
2answers
36 views

Foreign keys when cascades aren't needed

If I don't need to use cascade/restrict and similar constraints in a field which would logically be a foreign key, do I have any reason to explicitly declare it as a foreign key, other than ...
0
votes
2answers
285 views

annotated hibernate mapping id/long foreign key to nullable column

I've got the following class mapping a MySQL table: @Entity @Table(name = "category") public class Category { @Id @GeneratedValue(strategy=GenerationType.AUTO) @Column(name = "id") ...
0
votes
1answer
60 views

My create-controller not updating db, with dropdownlist and foreign keys

I'm using no modelview or repository, following a tutorial i found on asp.net The dropdownlist works fine, but when I hit create, the if (ModelState.IsValid) fails and returns me to the create screen, ...
1
vote
1answer
40 views

Are polymorphic associations necessary?

I am a rails newbie struggling to understand the advantage of using a polymorphic association over multiple belongs_to declarations with associated foreign keys. In Ryan Bates' railscast ...
1
vote
1answer
114 views

MVC populate dropdown from foreign key

I have been struggling with this for several days. I need to populate a dropdownlistfor with genres. My MovieRepository to grab the genres: public IQueryable<Movies> MoviesAndGenres { ...
0
votes
2answers
72 views

SQL : ER Model, Foreign keys

I have a simple question, but I am still confused about it. Whenever you design an ER model, how are you supposed to draw PK's and FK's ? Let's say I have two tables, User and Country User ID | ...
0
votes
1answer
149 views

Joining several tables with foreign keys in Parse.com [closed]

I wonder if there is a foreign key in Parse.com as I am completely new to it. So before anything else, I have a MySQL database with three tables (Console, ModelName, and GameName) that I will be ...
0
votes
1answer
66 views

How does the foreigner gem work?

I'm looking at the foreigner gem and trying to create some foreign keys. However, the gems documentation says that you should create your foreign keys like this `add_foreign_key(from_table, to_table, ...
0
votes
0answers
26 views

Handling foreign keys that automatically update when record is saved in Rails

I am working on a project where there are Items and ItemCategories. Due to a variety of different reasons, the company uses "sku_code" rather than use the primary key of the database to manage ...
0
votes
1answer
75 views

How to create a navigation property with a key that is not the the primary key of the 2nd object?

In EF5, using a code first approach and fluent API, how can create a navigation property (many to 1) based on a key that is not the primary key of the other table? My database model is as such, and I ...
0
votes
0answers
44 views

Foreign Key constraint not enforced on SQLite

I'm having some trouble with the FK constraints defined in table Invitation_Has_Users below: CREATE TABLE "main"."Users" ( "id" integer NOT NULL, "name" text NOT NULL, "gender" ...
1
vote
1answer
45 views

symfony2 relation not mapped correctly in child class

Here is my problem: I have a class species witch is abstract and I have another class "Raie" that extends species. I have a relation ManyToOne between species and typeSpecies, because every species ...
2
votes
3answers
241 views

it is possible to reference one column as multiple foreign keys

I have few tables, and I want to reference one column from PDF table to multiple other tables. for example if PDF table select output looks like this: ITEM_TYPE ITEM_ID QUANTITY 1 23 ...
0
votes
0answers
22 views

MySql index is loosing

I have a datatable in MySQL. It has a specific structure. It has a primary key (bigint). But I also have a field (bigint) that is a foreign key reference to the primary key in the same table. When I ...
1
vote
1answer
68 views

SQLAlchemy: How to save an object with the foreign key?

I've got these classes. class User(object): query = db_session.query_property() def __init__(self, username, passhash, salt): self.username = username ...
0
votes
0answers
71 views

MVC3 Foreign key in repository

I answered my own question. My solution below should be correct. I have a Movies table and a Genres table in my database. In my Model, the movie model has a foreign key relation to genres. What's ...
0
votes
1answer
88 views

Mysql cross-database foreign key

I am trying to create a cross database foreign key. When I run the following code on the same database CREATE TABLE `t1` ( `id` int(11) NOT NULL AUTO_INCREMENT, `int_id` varchar(128) COLLATE ...
2
votes
2answers
2k views

MySQL Cannot Add Foreign Key Constraint

So I'm trying to add Foreign Key constraints to my database as a project requirement and it worked the first time or two on different tables, but I have two tables on which I get an error when trying ...
0
votes
1answer
54 views

Django: Save id on a OneToOneField

models: class UserDataUpdate(models.Model): code = models.CharField(max_length=8) address = models.CharField(max_length=50) class UserSurvey(models.Model): about_treatment = ...

1 3 4 5 6 7 61