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)

0
votes
2answers
23 views

Foreign Key referencing Primary key in the same table

I have a table with two columns as the primary key. These two columns are also a foreign key that references the same table: (This table was created some time ago by someone who has since left the ...
0
votes
1answer
14 views

Updating existing lines in MySql and treating Duplicated Keys

I have a MySql database containing data about users of an application. This application is in production already, however improvements are added every day. The last improvement I've made changed the ...
2
votes
4answers
17 views

Mysql errno 150 trying to create table with foreign key references

I'm trying to create a table in mysql with a foreign key reference, like this: In database A: CREATE TABLE replication ( id varchar(255) NOT NULL PRIMARY KEY, uid varchar(255) NOT NULL, value ...
0
votes
2answers
50 views

SQL Table Design, which one is better?

I was wondering if anyone had some opinions on some table relation designs. So I have a form with 3 dropdowns, say Manufacturer, Model, Trim Would it be better to have 5 tables, ie one for each ...
0
votes
2answers
42 views

Sql server relationship using between value

I have a database that contains 2 tables (sql server 2008): LenderCommission ID int Commission decimal CommissionTier ID int MinCommission decimal MaxCommission ...
0
votes
1answer
8 views

Composite primary keys or surrogate primary key on relationship entities (entities that are also relations) in Doctrine2

I have a large database where I have entities that are relations. This exactly because of the following comment in the Doctrine 2 manual: I needed to store additional attributes in our relations and ...
0
votes
1answer
8 views

Get value in template of ManyToMany ForeignKey field

I need to display the values of the categories field from the class Analiza from the models below in a template. class Category(models.Model): name = models.CharField(max_length=60) def ...
1
vote
1answer
33 views

Not able to create foreign key constraint with on delete cascade as there is already one

Below is the scenario Table1 (Id, Name) Table2 (Id, Name1, Name2, Type) FK1: Name1 references Table1.Name with On cascade delete FK2: Name2 references Table1.Name with on cascade delete FK2 ...
0
votes
0answers
19 views

EF Code First Get FK related Values without Entity

I have following Vehicle entity class Vehicle { public int Id {get; set;} public string PlatNo {get; set;} public int VehicleTypeId {get; set;} } VehicleTypeId property is a FK of ...
2
votes
1answer
44 views

How can I store metadata about columns in my database in a normalized fashion?

Let's say that I have a simple table that looks like this: CREATE TABLE [dbo].[Product] ( ProductID INT -- PK ,ProductName NVARCHAR(100) ,ProductDescription NVARCHAR(MAX) ,ProductOwner ...
0
votes
1answer
39 views

Grails Many to one Relationship deletion

class First { String text Second second static constraints = { } } class Second { String name static constraints = { } } When I delete Second class object, I got an ...
1
vote
1answer
30 views

insert into postgresql table using c#

i have two postgreSQL tables linked by a foreign key. I want to insert into the second table the data coming from the first table primary key. I wrote that in my c# application : command1.CommandText ...
0
votes
1answer
13 views

Adding a database record with foreign key

Let's say there is a database with two tables: one customer table and one country table. Each customer row contains (among other things) a countryId foreign key. Let's also assume that we are ...
1
vote
1answer
41 views

Relational SQLite on Windows RT

i am using SQLite for Windows Runtime but i dont see any way to define relationships between tables. Is this feature supported in SQLite for WinRT? If not, are there any alternative solutions for ...
1
vote
1answer
24 views

Possible to specify a default action when creating a foreign key on invalid data?

Say I have the following two tables: Questions: Id | Text ----------------- 1 | Blah blah blah? 2 | True or false? Answers Id | QuestionId | Text ------------------------------- 1 | 1 ...
0
votes
0answers
10 views

Cant create a foreign key relationship between two tables

I have two tables tbl_del_info(order_no,ship_addr,bill_addr) and tbl_order(order_no,user_date,order_status) in both the tables order_no is the primary key. I am using SQL server 2005. I am unable to ...
0
votes
1answer
21 views

Django Filter by latest related object

I've setup a system to track moderation tasks for various objects in the database. These are linked via a Generic Foreign Key relation. Given a ObjectModerationState Object I must determine its state ...
2
votes
1answer
28 views

Can I assign a foreign key from two tables?

I am creating a database which is similar to the following situation. Table1: CustomerType1 (Column: CustomerId,...) Table2: CustomerType2 (Column: CustomerId,...) Table 3: Orders (Columns: ...
0
votes
1answer
31 views

How to create a single foreign key that points to a multiple-column primary key?

I have created with MySQL 5.5 a table1 with a multiple-column primary key, created from two FLOAT columns. I want to create a table2 with a single foreign key that points to the primary key of table1. ...
0
votes
0answers
32 views

Postgresql delete on cascade

I have two tables. Device and Device_Config. Device table has the following columns: device_id config_id bla bla2 foo bar And Device_config has the following columns id foo bar As you can ...
0
votes
0answers
35 views

MySQL Foreign Key Constraint Conundrum

In our Magento install, we are trying ro re-run an index, but it's failing on a foreign key constraint: There was a problem with reindexing process. Error Message: SQLSTATE[23000]: Integrity ...
0
votes
2answers
31 views

display foreignkey field in django template

I have models.py like below: class Profile(models.Model): user = models.OneToOneField(User) def __unicode__(self): return "%s" % self.user class Student(models.Model): user = ...
0
votes
2answers
44 views

How to make a relation between two tables without foreign key

I'm a total newbie and I'm trying to do a mysql database, using xampp for linux 1.8.1. I want to make a relation between two tables A and B. For what I know foreign keys create a bijection, or a ...
0
votes
1answer
55 views

Cannot create Foreign Key Constraint

I have a simple address book that collects people and companies info. So I have the following 3 tables and then others like email, phonenumber, address linked to contact: CREATE TABLE [dbo].[Contact] ...
0
votes
1answer
7 views

MYSQL ALTER Can't assign foreign key (errno: 150)

I'm trying to assign a foreign key. I have a 'users' table: user_id mediumint(8) unsigned, NotNull, Primary Key, AutoIncrement, first_name varchar(20) , NotNull last_name ...
0
votes
1answer
47 views

Foreign key matching in PostgreSQL

Just curious, if I have this table: CREATE TABLE "post" ( "id" SERIAL, "revision" INTEGER NOT NULL DEFAULT 0, "summary" CHARACTER VARYING NOT NULL, "description" TEXT NOT NULL, ...
0
votes
0answers
18 views

How to realize that an Oracle SQL OBJECT VARRAY elements using as foreign key

I created an OBJECT type and a VARRAY: CREATE TYPE termek_adat IS OBJECT( termek_id number(3), termek_db number(3)); / CREATE type TERMEK_INF is VARRAY(10000) OF termek_adat; I created a table: ...
0
votes
3answers
41 views

Foreign key constrains in SQLite

I have two very simple tables where one references another: tblBook: _id integer primary key AUTOINCREMENT name text publisher text tblReader: _id integer primary key ...
-1
votes
2answers
28 views

In Oracle, how would I begin to create the tables when all the needed tables have both foreign and primary key constraint?

In Oracle, Lets say there are 3 tables with primary key and foreign key on each table. So, If i were to start creating the tables, how would i start. I started to create a first table with primary ...
-2
votes
1answer
58 views

Implementing database from UML

I recently modeled an UML diagram that basically involves associations. Let's say the code is: public class Seller{ private int idSeller; private String name; private String passw; ...
0
votes
0answers
37 views

Django - how to set initial data for foreign key in admin forms?

Here is a resume of my situation : - I have 3 models : caracteristique, produit and produit carac - produit and caracteristique have many -to - many caracteristique through 'carac_produit' When I add ...
0
votes
1answer
9 views

MYSQL doesn't check for foriegn key exsistence

I am facing a strange problem here. TABLE 1: create table degree (degree_id varchar(6) primary key , degree_name varchar(32) unique key , degree_abbr varchar(3)); TABLE 2: create table course ...
0
votes
0answers
18 views

Multiple Reference of a foreign key

I have the following three tables in mysql database named "THE_COLLEGE" mysql> desc students; +----------+-------------+------+-----+---------+-------+ | Field | Type | Null | Key | ...
0
votes
1answer
17 views

change foreign key attributes in mysql

Is it possible to change the attribute of a key/foreign key (without deleting and re-creating them)? I've the following structure: CREATE TABLE `articles` ( .. `LKZ` smallint(3) NOT NULL, `FID` ...
0
votes
2answers
43 views

ID Refer to Table Rather than Column within Table

Multiple Voting Table Schema: Single Voting Table Schema: Businesses, Products, and Comments can all be voted on. For the first obvious solution, I chose to create an association entity for each of ...
0
votes
1answer
16 views

mysql friend system, index, foreign key, prim key

I am making a friend system for my website. I am thinking of making only 2 rows, add an index on each of them and making them foreign keys to the users table id column. I would like them deleted if ...
0
votes
0answers
22 views

CSLA Loading list by ForeignKey in LoadData

ok here is the deal. im working with the MVVM pattern in C#. i have got a PlaceChild ,PlaceChildList class and a Manage class which got the PlaceChildList in it. And PlaceChild got a ForeignKey of ...
0
votes
0answers
35 views

How to define a nullable foreign key in Fluent NHibernate?

I want to have a foreign key that can be null: a child has zero or one parents. NHibernate always complains about Foreign key reference target does not exist. Is it even impossible to do what I want? ...
0
votes
1answer
20 views

MySQL Constraints/Cascades: Will This Work?

I have a table - threads - and another - posts. Each thread is like a subject with the posts being replies. If a thread is deleted, all related posts need to be deleted. All posts have an id and a ...
0
votes
1answer
19 views

can't get the objects of foreign keys of django models also my design is probably bad

I've made two django models: Person and Items (here is part of my code): class Person(models.Model): """ Represent a person who has credentials. The person may have devices and/or ...
0
votes
0answers
16 views

Introducing FOREIGN KEY constraint 'FK_dbo.Prescriptions_dbo.UserProfile_UserId' on table 'Prescriptions'

can somebody help me please? I do become a frustrated. I do get error: "Introducing FOREIGN KEY constraint 'FK_dbo.Prescriptions_dbo.UserProfile_UserId' on table 'Prescriptions' may cause cycles or ...
-4
votes
1answer
36 views

How to store metadata using foreign key? [closed]

I am using PostgreSQL. I have two types of databases, A & B containing different types of data. However, my task is to store metadata of data contained in these two databases, A & B. So in ...
0
votes
0answers
11 views

Restrict the options available in foreign key choice by the value in a second column

I am using MySql 5.5.24, using InnoDB storage engine. I have configured pma db and am using it to enter some data in some backend database tables to configure my database. To make my problem more ...
-1
votes
1answer
72 views

Primary key composed of two foreign keys? Oracle

I have a question regarding a table creation. I want to combine the attributes of "Ono" and "Pno" into a primary key for a new table. These are both foreign keys, each from different tables. Do I just ...
0
votes
1answer
6 views

Foreign Key Input error in Link table (Error 1005)

I was trying to input my foreign keys into my Link table all at once. I created all my other tables first then my link table, i added columns to my link table for the foreign keys (that worked). Then ...
1
vote
1answer
17 views

In sqlite3, is there a foreign_key integrity check?

I'm just teaching myself sqlite and so I was surprised to see my foreign_key constraint not working when I was able to delete a parent entry. I then learned after reading more that the pragma for ...
0
votes
2answers
31 views

Connection between tables in mySQL database

I have a users table in my database , where i have an deviceID , a pushToken an OS . I have another table subscriptions. This table has the deviceID and the pushToken of subscribed users. When i ...
0
votes
2answers
33 views

Altering Oracle table: invalid identifier

Using Oracle Application Express for Oracle 11g Adding a foreign key constraint to a preexisting table. Table: COMMUNICATION COMMUNICATION-ID NUMBER COMMUNICATIONTYPE_ID VARCHAR2(6) ...
0
votes
1answer
10 views

Best Practice for storing HistoryOfAllEvents and EventDetails

I'm new to database design and I'm trying to fix an existing mess. I have a list of events (with columns of parameters for the events), and each event has another table of details for the event. For ...
0
votes
1answer
38 views

Load data in file and get a foreign key from an existing table

Hello there I have a Mysql Table for the Cantons (Switzerland we don't have states its canton here) I've loaded all Cantons into my table (Local data infile from swiss postalservice). Now I want to ...

1 2 3 4 5 61