开发者

Favouriting things in a database - most efficient method of keeping track?

开发者 https://www.devze.com 2022-12-27 04:20 出处:网络
I\'m working on a forum-like webapp where I\'d like to allow users to favourite an item so that they can keep track of it, and also so that others can see how many times an item\'s been favourited.

I'm working on a forum-like webapp where I'd like to allow users to favourite an item so that they can keep track of it, and also so that others can see how many times an item's been favourited.

The problem is, I'm unsure on the best practices for databases, which includes this situation.

I have two ideas in my head on how to do this:

  1. Add an extra column to the user table and store things like so: "|2|5|73|"
  2. Add an extra table with at least two columns, one for referencing an item, the other for referencing a user.

I feel uncomfo开发者_高级运维rtable about going for the second method as it involves an extra table, and potentially more queries would be required. Perhaps these beliefs aren't an issue, as I have little understanding of databases beyond simply working with table layouts and basic queries.


The second method, commonly called a junction or join table, is fairly standard practice and is going to be far more efficient than adding a column like the one you describe to the user table. Through the magic of JOINs you won't be making any extra queries.

Since it sounds like your app is starting to get a little complex, I highly recommend picking up a MySQL database book at your local library or book store (check for reviews on Amazon to find a good one) and expanding your knowledge.


Well I'd have +1-ed the otherresponse but I'm too much of a newb apparently. But yes, I recommend a join table for this type of thing.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号