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.

Is there any alternative to creating two tables: parent and child to implement parent child form. I am working with a database where the Parent Table contains repeated feilds on the Child. This makes the concept annoying to me. I could code with it that way but its anoying to me. I want to redesign the database, possibly merge the tables to 1 and use views instead of tables. I need suggestion on a work around and possible the pros and cons.

Thanks

share|improve this question

1 Answer

You can Add Parent Id in same Table to avoid using 2 tables.

ex.

category_id -------- category_name --------- parent_category_id


1 -------------------- CAT A --------------------- 0

2 -------------------- CAT CHILD A ------------ 1

3 -------------------- CAT CHILD A 1 ---------- 1

4 -------------------- CHILD OF A -------------- 2

Likewise. Hope this will help.

share|improve this answer
Thanks you have been helpful – user103827 May 25 '12 at 4:13

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.