I'm developing a kind of a bidding site, and keeping the item up for bid (and its details) in one table, and the bids in another.
As a matter of principle, to indicate winning bids (for retrieving history, etc), it is better to:
- Store a column in the items table called bidWon, and storing the bid ID there, then retrieving it that way?
- Storing a column in the bid table saying "status" or something, and attaching there the item id IF the bid is successful; otherwise leaving that column empty and then querying database with the NOT IN "winning" or whatever.
- Both, for quick pulling via item or bid table (and using a JOIN or something to get all appropriate data).
- ??? Something I haven't thought of?
I am asking this question broadly as I enter the next level of db programming and want to prevent performance issues at outset.
Thanks!