Tagged Questions

1
vote
1answer
33 views

Retrieving data from two chained many-to-many relationships

I was practising with an example that I was creating like the one below (where I was thinking about a movie being able to belong to many categories and a category being able to belong to have many ...
1
vote
2answers
57 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
106 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
4answers
131 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
3answers
261 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
529 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?
0
votes
1answer
16 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
2answers
225 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 ...