I have a mysql database with a table of ebay users, and their individual auctions. What I wish to do is to be able to "monitor" certain users, which would basically include retriving all of the auctions of any monitored users. I would like to know the best way to do this.
I am thinking of having another table, with just one column containing the names of monitored users, and doing a join between the auction table and the users table.
Or would it be better to simply feed watched users names into an array, and do a particular sql query when needed?