Imagine a basic website where users post something on random dates. The system uses mysql-php and stores each post in a table, call tablePost, with a column storing the date (or time). Note that the user can post multiple posts in a day. What I want to achieve is to be able to fetch date of last 4 days (or even more) that user posted. Also the post information (postid, posttext etc) is to be fetched. An example output is:
- 2012-04-25 (3 posts, postinfo...)
- 2012-04-12 (2 posts, postinfo...)
- 2011-09-12 (33 posts, postinfo...)
- 2011-03-04 (10 posts, postinfo...)
I can imagine two solutions:
1) Use only tablePost table, iterate over entries by php and fetch required data
2) Create another table, call tableActiveDays. when a user posts, an entry (userId, dateDay) is inserted possibly with INSERT IGNORE or checking whether it has not been inserted before. Therefore, each (userId, dateDay) is unique. In this way, if I want to fetch last 4 active days, I can use a simple select ... order by ... limit by 4 query.
My questions are:
- Any other way to achieve this task ?
- What is the most efficient way to achieve this ?
postinfoyou expect for cases when there 2, 3 or more posts per day? – vyegorov May 1 '12 at 10:55postinfoand in which format? – vyegorov May 1 '12 at 11:02