Forum Moderators: open
However, it's statically programmed. I.e. node C is a child of Node B is a child of Node A and knows nothing about Node E which is a child of Node D which is a child of Node B
I am looking for resources on different methods of categorizing products/items, and relating them all together such that a customer can browse around in these categories.
Anyone have suggested reading or reference?
Thanks!
Here are some things to read about hierarchies in SQL databases:
[artfulsoftware.com...]
Joe Celko's book "Trees and Hierarchies in SQL For Smarties"
[dev.mysql.com...]
You need to consider a nested set design or an adjacency list model, depending on if you have frequent reads or inserts, respectively. Good luck!