A junction table is a table that contains common fields from two or more tables.

learn more… | top users | synonyms

0
votes
1answer
28 views

Query a Junction Table from MS Access Database in a ASP / C# Webpage

I'm writing a ASP page where: Student Logs in -> Student Reaches Welcome Page w/ Link to Show them Their Enrolled Courses -> Linked Page Shows Course Info, Description etc. I have MS Access database ...
1
vote
1answer
9 views

Delete row from Access junction table via form

I set up a subform listing stored values from a junction and lookup table. This part is working nicely (I can view all stored entries or add new ones). Here are my relationships: And here's the ...
1
vote
1answer
25 views

Integrate junction and lookup tables with a basic Access database

I have a simple database that stores a customer's name, city and state. I've added to this two new tables. One is a lookup table, for describing a car model, and the second is a junction table for ...
0
votes
2answers
30 views

Automatically delete junction data along with DELETE of a record?

I have users, have offers, and a junction table users_offers. Is there a setup I can carry out with foreign key relations that can ensure that junction data will be automatically deleted when I ...
0
votes
2answers
36 views

SELECT data with primary keys from another table?

I have a 'users' table, an 'offers' table, and a junction '*users_offers*' with userIDs and offerIDs. How to select every offer from offers that belongs to a particular user? I could achieve a ...
0
votes
1answer
79 views

Junction Table in SQL Server

I am having difficulty creating a junction table in a new database. I used these queries to create the tables: CREATE TABLE dbo.EmployeeUnavailability ( ID INT IDENTITY(1,1) PRIMARY KEY, ...
0
votes
1answer
64 views

EF Code First Many to Many Relation Without an Entity

I have read many about how to configure many to many realtionships with EF Code First and fluent configuration. But I couldn't understand why I should create an extra entity for the junction table. ...
0
votes
2answers
137 views

SQL query on multiple tables, one being a junction table

I have a fairly simple database consisting of 4 tables: Table 1: USERS Columns: userID, user_name Table 2: GROUPS Columns: groupID, group_name Table 3 (Junction Table): GROUP_MATRIX Columns: ...
1
vote
2answers
310 views

MS SQL creating many-to-many relation with a junction table

I'm using Microsoft SQL Server Management Studio and while creating a junction table should I create an ID column for the junction table, if so should I also make it the primary key and identity ...
0
votes
3answers
250 views

Selective update in SQL Server

I've created a junction table like this one: http://imageshack.us/scaled/landing/822/kantotype.png I was trying to figure out a query that could able to select some rows - based on the PokémonID - ...
2
votes
0answers
106 views

Junction table model won't save changes

I'm relative new to MVC and programming, but this has me stuck for a while now: In the following example the entitystate won't be changed to Modified. My code is as follows: 3 Tables: ...
2
votes
1answer
200 views

Junction tables vs foreign key arrays?

I'm modeling many-to-many relationship where the relationship is accessed most of the time from one side only. It's more like a hierarchy, that is accessed top-down and not the other way around. ...
0
votes
1answer
238 views

NHibernate. Conform. Set composite primary key in junctiontable

I have two tables and I wand to create a junction table. I have this mapping. public UsertMap() { Table("Users"); Id(x => x.Id, map => map.Generator(Generators.Assigned)); ...
0
votes
1answer
41 views

Rails 3: Possible to order with a junction-table?

I have a nested form which creates many locations for each post. Each location can also be used in multiple posts. E.g. Post 1 may have Location1, Location2 and Location3 AND Post 2 may have ...
0
votes
1answer
138 views

Design pattern - database many to many

I have a question about many-tomany relationship. I know that we have to create a junction table. But let say we have this scenario: one table for Customers one table for Orders one table for ...
0
votes
2answers
90 views

How to show junction table in a matrix with WPF?

I have two enums: public enum MyEnumA { OptionA1 = 1, OptionA2 = 2, OptionA3 = 3, } public enum MyEnumB { OptionB1 = 1, OptionB2 = 2, OptionB3 = 3, } and a class containing ...
0
votes
2answers
87 views

Merge rows from cross referenced tables

I'd like to create a SQL Server select statement where the cross referenced data are in one column from different rows. I'd like to use stuff (if possible) and no ;with command. Contract table ID ...
5
votes
2answers
286 views

How do I query a junction table

Using Entity Framework/LINQ, I need help with the following. The database has a table of People with an identity column of PersonId. There is also a Skills table with an identity column of SkillId. ...
1
vote
1answer
311 views

Maintaining rows in a SQL Server junction table when rows in other table are inserted and updated

Can you show sample coding to create a trigger or stored procedure that maintains rows a SQL Server junction table when changes are made to the Authors and BookTitles tables such as inserting and ...
0
votes
1answer
125 views

sqlalchemy: remove item from a junction table

I have a junction table which holds references to other two tables. What I want is to remove this refrence from the junction table. In the junction we can have more then one item from a geven type for ...
0
votes
0answers
173 views

Hibernate junction table POJO foreign keys inside objects

For example, i have 3 tables: Man: int pk_id Junction: int fk_m_id, int fk_w_id, String some_info Object Man, Object Woman Woman: int pk_id The junction table has Man and Woman's foreign keys as ...
0
votes
2answers
761 views

Insert into bridge table entity framework

Hi guys, I'm learning to climb with EF ,I do have basic understanding of CRUD with EF ,but now I have a table which have a navigation property (Which I suspect is the bridge table) ,so I need to add ...
2
votes
2answers
1k views

Apex - SalesForce - Accessing a Parent object field through Junction object

Hello Folks, I am working on customizing some functionality on the Force.com platform. I have a question for you; I am not too sure if this is possible! What I have? : 2 custom objects - abc and ...
1
vote
1answer
450 views

Junction/Bridge tables Oracle SQL

Just a quick question regarding Junction tables in Oracle SQL. I understand their functionality and their role in a 'many to many' relationship but what about a 'one to many' relationship? I have two ...
0
votes
2answers
135 views

What is the best way to model a heterogenous many-to-many relationship in Django?

I've searched around for a while, but can't seem to find an existing question for this (although it could be an issue of not knowing terminology). I'm new to Django, and have been attempting to take ...
0
votes
1answer
163 views

Inserting into intersection table referencing foreign key

Prop PropID PropDescription Many to Many relationship Image ImageID ImageDescription Image_has_Prop Prop_PropID Image_ImageID In my application, I need to insert data into the Image_has_Prop . The ...
0
votes
1answer
307 views

If you do a many to many relationship in a MySQL db is it necessary to transfer all of the key id's to the join table?

So I am working with MySQL workbench 5.2 and i am making an EER diagram for my database, and when I make a many to many relationship between a table (and those tables already have relationships with ...
0
votes
1answer
445 views

Doctrine 2, how to get a property in a left join result set? [closed]

Symfony 2, Doctrine 2.1. I've got 3 entities, one of them intermediate (join table). Let's say it's SomeObject, SomeProperty and ObjectProperties. Problem: I can't get the value of SomeProperty ...
0
votes
1answer
113 views

How can you map and work with a junction table in fluent nhibernate?

I have the classic scenario with 2 tables and a junction table. Let's say, Locations, Prices and LocationXPrices. LocationXPrices contains only the id's of Locations and Prices so that we know how ...
0
votes
1answer
170 views

Many-to-many relationships on a specific column for Entity Framework

I have 3 tables: Book, Section and Content. I want to add many-to-many relation between Section and Content. Section and Content tables have a PageNo column. A Page may have many contents and many ...
2
votes
3answers
108 views

How can I store and index a list in a relational database?

I'm working on constructing a database (SQLite) to store information about each run of a Mathematica script I've written. The script takes several input parameters, so my DB has a table with a column ...
1
vote
2answers
426 views

Pros and cons of a junction table between three tables, only two of which at any given time

I am going to be have a many-to-many relationship across three tables, but the relationship will be between only one table (say TableA) and only one of the other two tables (say TableB and TableC) at ...
1
vote
1answer
452 views

DISCUSSION - Complex Database Relations (Junction Tables)

Welcome! My Question is about the idea of combining two junction tables into one, for similarly related tables. Please read to see what I mean. Also note that this is indeed a problem I am faced with ...
1
vote
2answers
108 views

Relating Tables with no previous Relation (SQL Server)

EDIT: I swapped out my structural implementation, but my problem still remains the same; i.e. First creating a Publication object (if it doesn't yet exist) before creating the SvcRequest record. I ...
0
votes
3answers
434 views

Junction Table & Normalization Question

I am having a hard time trying to figure out if the following design pattern is acceptable. I have the following requirements (and some other more) for a relational model: 1) It must be able to ...
2
votes
1answer
469 views

Entity Framework 4 Navigation properties missing from Data Sources

I have DB that contains 3 tables - Actors, Films, Actors_Films. 2 of the tables have a many-to-many relationship (Actors and Films), which is modelled using a junction table (Actors_Films). I'm ...
2
votes
1answer
2k views

Many to many relationship with junction table in Entity Framework?

I'm trying to create a many-to-many relationship in Entity Framework (code first), according to the following post: Database design for limited number of choices in MVC and Entity Framework? However, ...
1
vote
3answers
233 views

Are three way junction tables a code smell?

I'm working on a database with a three way junction table. Is this a code smell, or nothing to be concerned about? What better options are there for linking many-to-many-to-many?
1
vote
2answers
399 views

How can I create foreign keys for junction table

I have Object1 and junction table and Object2. Object2 is table that has many junction tables, but can have only one junction table torefrencing to it. When table Object1 is removed, then junction ...
0
votes
1answer
384 views

Junction tables in T-SQL

In my database application, when I try to attach a page to a site, I get the following error: System.InvalidOperationException: Can't perform Create, Update or Delete operations on ...
1
vote
2answers
500 views

MS-Access Junction Table Inserts/Deletions Between Two Mutually Exclusive Lists (2 Listboxes)

With this kind of design, I would like to create a functionality with which to add and delete records from the junction table. The case is from when editing an employee and selecting what exams they ...
5
votes
4answers
1k views

Primary Key / Clustered key for Junction Tables

Let's say we have a Product table, and Order table and a (junction table) ProductOrder. ProductOrder will have an ProductID and an OrderID. In most of our systems these tables also have an autonumber ...
1
vote
3answers
158 views

Is this database structure sane, correct and normalized?

So, yesterday I asked 2 questions that pivoted around the same idea: Reorganizing a database that A- wasn't normalized and B- was a mess by virtue of my ignorance. I spent the better part of the day ...
1
vote
1answer
2k views

Zend_db junction table join query

Not sure why I can't figure this one out. Basically, I have two tables with a many-to-many relationship so I have a junction table inbetween them. For an example, consider the following database ...
9
votes
4answers
11k views

How to retrieve the last autoincremented ID from a SQLite table?

I have a table Messages with columns ID (primary key, autoincrement) and Content (text). I have a table Users with columns username (primary key, text) and Hash. A message is sent by one Sender (user) ...
1
vote
3answers
955 views

Help required to optimize LINQ query

I am looking to optimize my LINQ query because although it works right, the SQL it generates is convoluted and inefficient... Basically, I am looking to select customers (as CustomerDisplay objects) ...
15
votes
5answers
3k views

In a join table, what's the best workaround for Rails' absence of a composite key?

create_table :categories_posts, :id => false do |t| t.column :category_id, :integer, :null => false t.column :post_id, :integer, :null => false end I have a join table (as above) with ...
9
votes
8answers
1k views

Why is it not good to have a primary key on a join table?

I was watching a screencast where the author said it is not good to have a primary key on a join table but didn't explain why. The join table in the example had two columns defined in a Rails ...
1
vote
3answers
2k views

Can a junction table (join table) also be used for a one-to-many relationship?

According to the definition, a Junction Table (bridge table/link table) is used for many-to-many relationships, when used like this: CREATE TABLE Users ( UserLogin varchar(50) PRIMARY KEY, ...