Tagged Questions
The table-relationships tag has no wiki summary.
4
votes
4answers
2k views
Importing/Exporting Relationships in MS Access
I have a couple of mdb files with the exact table structure. I have to change the primary key of the main table from autonumber to number in all of them, which means I have to:
Drop the all the ...
2
votes
1answer
101 views
Synopse SQLite select rows for 1:N relationship
I'm playing with the Synopse's SQLite implementation, but I'm stucked with the following piece of code. In the form constructor I create a database model where there are two tables Task and Comment ...
2
votes
1answer
42 views
MySQL, need help defining multiple join query to return complete info
So, I have modified a query I learned from this thread, however when I filter between tags and cats, the result is undesirable. Filtering for category 5 will return just the category list info and ...
2
votes
1answer
51 views
CakePHP: finding information in distantly related models
I have a News model, which has a HABTM relationship with an Artists model, and an artist in turn hasMany tourdates.
If I want to find all tourdates related to the current news item, what is an ...
2
votes
3answers
1k views
Rails ActiveRecord relationships - has many and belongs to associations
I've created 3 models:
Article: contains an article
Tag: contains tags
ArticleTag: meant for associating a many-to-one tags to article relationship. It contains a tag_id and an article_id.
The ...
1
vote
2answers
52 views
Database table structure for user albums and photos
Okay i'm creating a little community website. A user joins my site and he has the option to
enter his informations upload photos add friends and post to his wall. By now i want to know how to ...
1
vote
2answers
93 views
MySQL Database Design Question, one to one,many to many, many to one, or too many?
I am in the process of setting up tables in my database for my first project. (Exciting!)
I am having a hard time deciding what types of relationships I need to set up.
I have the following basic ...
1
vote
2answers
41 views
how to link multiple comments to a request in a database?
So I am developing this request management system web app in ASP.net, C#, SQL server and am currently designing the database. My question is that, I want a request to have multiple comments from ...
1
vote
0answers
95 views
JPA: Table Relationship Issue
I've two tables: reservation and machine. So, I have two classes:
Reservation
@javax.persistence.Entity
@Table(name = "reservation")
@NamedQueries({
@NamedQuery(
name = ...
1
vote
1answer
195 views
Order Zend_Db_Table rowset by reference column
i know i can define relationships through _referenceMap, i know that i con join selects trough
$db->select()
But what i need is to fetch rowset in model extending Zend_Db_Table_Abstract and then ...
1
vote
2answers
263 views
one to one relationship between 3 tables(back to back - 1 to 1 relationship)
There are 3 tables namely FN, ADM, USR representing a
function, admin for the function, users who attend the function.
Admin will be a user and ADM has to be inherited from the USR.
FN_I,USR_I ...
1
vote
2answers
54 views
HOW TO: When record on table A gets deleted all records on table B, that are associated with table A, should ALSO be deleted?
By having into consideration the following scheme:
We need to make sure that, if an association gets deleted, all the dogs that belong to that association, should also be deleted.
However, it ...
1
vote
1answer
177 views
Zend_Db relationships from diagram
I have the following tables:
Each with its own mapper:
Product_Model_DbTable_Product
Product_Model_DbTable_Category
Product_Model_DbTable_ProdCategRelation
I've seen some tutorials about how it's ...
1
vote
4answers
129 views
Generaly in database design what is better one table with two references or one table?
Let's say i have people who search for jobs, and i have a list of jobs.
So i have two tables:
people and jobs.
Now i have a list of skills of the person, and i have a list of skills for the job ...
1
vote
2answers
580 views
Multi level associations in rails
I am creating an application to track football teams through out the season. but i am stuck on the design of the database. One fixture has a home team and an away team. I have created a fixture model ...
1
vote
3answers
255 views
DB Schema Organization
I'm currently in the planning phase of building a scheduling web app (for volunteer staffing of events), and I've got a question for those with more experience.
Background:
There's a calendar of ...
1
vote
8answers
515 views
database relationships
does setting up proper relationships in a database help with anything else other than data integrity?
do they improve or hinder performance?
1
vote
1answer
180 views
ROR Model Setup Question: Table Relationships
I'm developing a site that will have a model for users, a model for submissions, and a model for ratings. Each submission may have only one rating per user. My question is how should I set this up in ...
1
vote
2answers
1k views
limitations of :finder_sql
In a rails app, I using the :finder_sql option in a has_many declaration. The rails docs say that when I do this, "find_in_collection is not added." What does this mean?
0
votes
1answer
25 views
Access 2007 - relationship view showing ghost tables
When I pull in two tables in the relationship view window, 5 tables appear. Three appear to be duplicates (patients, patients_1, patients_2). I've cleared the window and started over - same problem. ...
0
votes
0answers
44 views
Mysql Table relationship Foreign Key reference to multiple table?
Ok so I have a problem designing a database relationship table. Here is what I am having trouble with.
You have these tables
channel
channel_artist
channel_movie
channel_tv
channel_music
so ...
0
votes
1answer
14 views
Relationships between tables
I have a table called objectives, each objective has zero to many cause-effect relationships with other objectives, these relationships I have to be stored in the database, let me know if there's a ...
0
votes
5answers
57 views
SQL One-to-one Relationship? and resulting Schema
I am creating a mortgage/loans database - in which i have a table mortgages with the fields:
mortgage_id
client_id
*rate_type* (which may be: fixed or tracker)
...etc
Depending on the choice for ...
0
votes
1answer
39 views
symfony 1.4/ doctrine 1.2 active record relationship tables code organize
Let´s say I have a schema containing 3 tables: Users,Pages and Followers. An user can follow many pages. The followers table would contain the page_id and user_id.
I need to create a method to return ...
0
votes
1answer
140 views
Change relationship multiplicity in Lightswitch for imported tables
I have two tables in SQL server one Messages and a second Message Bodies. There is a FK relationship between the two (Primary key on Messages to a column (Message ID) on Message Bodies.
Message ...
0
votes
1answer
74 views
Polymorphic Relationship Table Queries in Rails — find object by multiple
I have a relationship table in a rails application called edit_privileges, in which the User is the "editor" and a number of other classes are "editable". Let's say that two of those classes are ...
0
votes
1answer
279 views
Relationships in Access 2010
I have two tables in a 2010 Access Database. One for Customers and One for Invoices. I created a form with a lookup field at top for a new invoice.
What I'm trying to do is when you look up a ...
0
votes
2answers
354 views
Zend Framework get dependent rows following a certain condition
I want to retrieve rows from a dependent table that follows a given criteria in the dependent table.
0
votes
2answers
75 views
CakePHP model associations via an intermediary table?
I have a Home model that links to a Realtor model on Home.realtor_num = Realtor.num.
I have an Office model linked to the Realtor model on Realtor.office_num = Office.num.
Suppose I want easy access ...
0
votes
1answer
85 views
Entity Framework 4 Hiding Underlying Resolver Tables when model is generated from database
When creating an entity framework model from scratch it is possible to specify a Many to Many relationship in the model.
e.g Entity1 * ----- * Entity2
When a database is then generated from this, a ...
0
votes
2answers
55 views
Need help with many-to-many relationships
I have a student and faculty table. The primary key for student is studendID (SID) and faculty's primary key is facultyID, naturally. Student has an advisor column and a requested advisor column, ...
0
votes
2answers
222 views
Rails database relationships
I have three models that I want to interact with each other.
Kase, Person and and Company.
I have (I think) setup the relationships correctly:
class Kase < ActiveRecord::Base
#HAS ONE COMPANY
...
0
votes
1answer
93 views
Database table relationships: Always also relate to specified value (Linq to SQL in .NET Framework)
I really can not describe my question better in the title. If anyone has suggestions: Please tell!
I use the Linq to SQL framework in .NET. I ran into something which could be easily solved if the ...
0
votes
1answer
801 views
Hibernate MS SQL Join issue
I have two tables in the clients mssql database. The first is a job table - so I created an Job entity which contains the load type and load weight and all that stuff - works fine.
My problem now is ...
0
votes
1answer
194 views
Can Rails Active Record understand two simultaneous relationships between two tables at once?
I have two tables, users and groups. A user can belong to many groups. A group can have many users.
So I have created a have_and_belongs_to_many relationship between users and groups using a join ...
0
votes
2answers
37 views
MYSQL / PHP - Efficient method for attaching users to a project
I'm building a system that has a user table and a project table. I'm trying to determine the most efficient way to connect users to a project.
I'm was thinking about a table that records the ...
0
votes
7answers
496 views
How can I create multiple columns from one DB Field in SQL Server?
I have a field called PropertyValue in the UserProfile table that can contain information for address, phone number, first name, last name, user name, city, etc... each record in this table is ...
-1
votes
1answer
39 views
How to persist such data in mysql
I have the following 5 classes [other attributes and methods have been skipped]
CommonInterface.java
import java.util.Vector;
public class CommonInterface {
public Vector ...