Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have 3 tables

1) Photos (PhotoId,Title, CreatedById,etc...)

2) Stories (StotyId,StoryDesc,CoverPhotoId,CreatedById,etc...)

3) Groups (GroupId,GroupDesc,CreatedById)

Now i want to create a table where i can store the contents of a Group. Each Group can have 1 or mroe Photos and Stories. How will i store that ? If i use only table like this

 GroupContents (Id,GroupId,ItemId,ItemType)  

Where I will store StoryId or PhotoId in the ItemId column and store either "Story" or "Photo" in the ItemType column.

When i write a query to get contents of a Group,Should i add a conditinal join ? ie; If the ItemType is "Story" , Join from Story table, Else Join from Photos table ? Because same story id and PhotoId exist as its an Identity column in both tables

What is the best way to handle this scenario ? Should i create 2 seperate tables like GroupPhotos(GroupId,PhotoId) and GroupStories(GroupId,StoryId) ?

share|improve this question

1 Answer

What is the best way to handle this scenario ? Should i create 2 seperate tables like GroupPhotos(GroupId,PhotoId) and GroupStories(GroupId,StoryId) ?

Yes, exactly.

Then you'd just do Group LEFT JOIN GroupPhotos LEFT JOIN GroupStories

share|improve this answer

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.