I'm currently using the following code:
SELECT at.article_id, art.datetime, Count(at.article_id) AS common_tagged_art
FROM article_tags AS at INNER JOIN articles AS art ON at.article_id = art.article_id
WHERE at.tag_id = 4 OR at.tag_id = 3 OR at.tag_id = 1
GROUP BY at.article_id
ORDER BY common_tagged_art DESC, art.datetime DESC
This returns almost the exact result set I need, which look something like:
+-----------+---------------------+-------------+
| article_id| datetime | common_tags |
+-----------+---------------------+-------------+
| 23 | 2012-09-25 15:37:25 | 3 |
+-----------+---------------------+-------------+
| 24 | 2012-09-25 15:37:24 | 3 |
+-----------+---------------------+-------------+
| 27 | 2012-09-25 15:37:23 | 3 |
+-----------+---------------------+-------------+
| 30 | 2012-09-25 15:37:22 | 3 |
+-----------+---------------------+-------------+
| 21 | 2012-09-25 15:37:21 | 3 |
+-----------+---------------------+-------------+
I need to adjust my query so that I am able to figure out that article_id 24 is on the 2nd row of the results I get back, then I need it to return everything below the 2nd row.
If there were 100 rows in a subquery and I identified that article_id 24 was on the 49th row, I need the query to return rows 50-100. I'm not sure if this is possible in MySQL, or if it would be a better suited task to do within PHP given my original query.
What I have so far looks something like the following, only, I'm at a loss after the subquery.
SELECT article_id, datetime, common_tags
FROM (
SELECT at.article_id, art.datetime, Count(at.article_id) AS common_tags
FROM article_tags AS at INNER JOIN articles AS art ON at.article_id = art.article_id
WHERE at.tag_id IN (4,3,1)
GROUP BY at.article_id
ORDER BY common_tags DESC, art.datetime DESC
) at1
//IDENTIFY which row article_id X is on in at1
//GET any row below row X in at1
This wouldn't be an issue if it weren't for the fact that none of the columns have a static order.
Any advice would be appreciated.
Thanks!