Database Table Structure for Shopping Cart - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T15:22:01Z http://stackoverflow.com/feeds/question/360959 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/360959/database-table-structure-for-shopping-cart 1 Database Table Structure for Shopping Cart Cliff Racer 2008-12-11T21:13:59Z 2008-12-11T23:06:39Z <p>I'm a beginner with SQL and am working on one of my first databases. I am trying to create a very cut-down shopping cart and am currently working on getting the database together before I start coding the site.</p> <p>One of the things I am struggling with is how to structure the products portion of the database. If all my products were individual items it would be ok. My problem is thatI would also like the ability to create "packages" of sorts that would combine several products into one Package/product with its own unique ID but different price.</p> <p>Has anyone tackled this before...Heck, I am sure someone has. My question is: Is there a best practice way to structure the database tables to allow for this sort of thing? Logic-wise I am having a hard time wrapping my head around this one.</p> http://stackoverflow.com/questions/360959/database-table-structure-for-shopping-cart/360988#360988 1 Answer by Jim Anderson for Database Table Structure for Shopping Cart Jim Anderson 2008-12-11T21:21:37Z 2008-12-11T21:21:37Z <p>I would probably create a package table with the package id and price for the package and then have an intermediate (cross reference) table between the package and products with package IDs (as a FK to the package table) and corresponding product IDs (as FK to the product table).</p> http://stackoverflow.com/questions/360959/database-table-structure-for-shopping-cart/361060#361060 2 Answer by Slace for Database Table Structure for Shopping Cart Slace 2008-12-11T21:37:40Z 2008-12-11T21:37:40Z <p>Ayende Rahien (of RhinoMocks) has recently been doing a series on building a shopping cart, starting here: <a href="http://ayende.com/Blog/archive/2008/12/07/designing-a-shopping-cart.aspx" rel="nofollow">http://ayende.com/Blog/archive/2008/12/07/designing-a-shopping-cart.aspx</a>. It does use a class diagram but you should be able to convert the concept into a database diagram.</p> http://stackoverflow.com/questions/360959/database-table-structure-for-shopping-cart/361170#361170 0 Answer by Kyle West for Database Table Structure for Shopping Cart Kyle West 2008-12-11T22:08:22Z 2008-12-11T22:08:22Z <p>Anything Ayende is doing is going to be over the head of a beginner. To answer your question, you need 3 tables. One for your products, one for your packages and one to "link" products to packages. I'm assuming you've got the first two covered. The third is called a Many-To-Many relationship.</p> <p>It should be called ProductsPackages and have two columns (PackageId and ProductId). You should create foreign key constraints to the Products and Packages tables. </p> <p>Now, to add a product to a package you insert the id of each into the ProductsPackages table.</p> http://stackoverflow.com/questions/360959/database-table-structure-for-shopping-cart/361355#361355 0 Answer by Tim Lytle for Database Table Structure for Shopping Cart Tim Lytle 2008-12-11T23:06:39Z 2008-12-11T23:06:39Z <p>One way that avoids extra tables, but imposes some limits is to simply add a self-referencing "ParentID" field to the product table. That "ParentID" simply points to the associated package product. Since it's all the same table, your packages have the same fields (price, etc.) as your individual products. To find what products make up a package, simply query for all product with a "ParentID" of the package's "ProductID".</p> <p>The limitation is that products can only be a part of one package. So if you sell a baseball, bat, and glove, as well as a 'baseball' package including all three, the glove could not ever be part of the 'football' package. </p> <p>However, one advantage is that both the 'baseball' and the 'football' packages and the 'coach handbook' product could be part of the 'complete sports' package. And if you remove the bat from the 'baseball' package, it's removed from the 'complete sports' package as well. All without adding a single table.</p> <p>Of course the single package per product limitation means this certainly won't work for every situation.</p>