Jump to content

MySQL Schema: Book Purchasing


idire

Recommended Posts

I have a book purchasing system that I am trying to produce.

 

 

So far I have these tables:

 

 

book { bookid (PK), creator, title, isbn, price, genre}

purchase { purchase_id (PK), user_id (FK), book_id (FK), date }

user { user_id (PK), username, name, balance }

 

http://i34.tinypic.com/30uakw2.png

 

1)

 

I need to be able to record a users purchases, how should I be storing a purchase where a user buys more than one item at a time:

 

two rows in purchases table

 

OR rename purchases to orders, and make another table that links in purchases to books and orders.

 

Its important I get this right in order to satisfy question 2.

 

2)

 

I need to write PHP that recommends other books for a user to purchase.

 

I figure I could do this by:

 

a) genre

b) the most popular purchased in the genre a user already purchased

c) what other users bought when they bought a book you have bought.

 

Is this ok, and what other tables would I need to make this process more efficient?

 

----

 

Thanks

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.