Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have to make a M:1 relationship using SQL Server but I've been wondering if the column representing the "many" side should be foreign key and the column representing "one" side should be primary key. The purpose is retrieving information from the table with the column representing "one" side using the table with the column representing "many" side. Do you thing this idea is reasonable and would work successfully?

share|improve this question

1 Answer

up vote 1 down vote accepted

I've been wondering if the column representing the "many" side should be foreign key and the column representing "one" side should be primary key.

The column representing the many side is indeed a primary key of a table, and the column representing the one side is also a primary key of another table. But there is a new column in one of them, is a foreign key that connect each others(this column is the column that makes the relation many to one, and that is the column you should care of).

So, you have to make them into two tables. Consider the following Many to one example:

Countries and cities relation: One Country has many cities.

This would be represented with two tables:

enter image description here

Countries:

  • CountryID primary key,
  • Name.

Cities:

  • CityID primary key1,
  • CountryId foreign key references Countries(ID),
  • Name.

And that is how you should create a many to one relation as follows:

  • The columns CountryID and CityID are primary keys in the two tables.
  • The column CountryID which represents the one side is a foreign key in the many side(cities table). That is the column that you should

1:You should have a composite key instead of a primary table in the Cities unless you want a city to be in more than one Country at the same time.

share|improve this answer
You really should not promote creating tables with the same name of primary key, ID in this case; it makes a mess of queries. Since you have given Countries and Cities as your example what's wrong with at least calling the keys country_id and city_id? Also you should have a composite key in the Cities unless you want a city to be in more than one Country at the same time. – Tony Nov 22 '12 at 13:23
@Tony - I used the diagram that is in my answer from an existing database. But I used this approach, because I used to use LINQ to SQL and NHibernate recently as an ORM. So ID as a primary key was fine since in my application would be City.ID and country.Id. But I agree with you in case it is in the database queries. That's why I used it CountryID and Cityid in the column list. Fixed now. Thanks – Mahmoud Gamal Nov 22 '12 at 13:37
@Tony - For the second point, it was an example, and I just tried to simplify the design. – Mahmoud Gamal Nov 22 '12 at 13:39
:) Thank you, guys. You helped me a lot. – s.v. Nov 22 '12 at 13:43

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.