alphacooler
Programmer
Here is my query:
SELECT users.username
FROM articles
INNER JOIN users ON ( articles.userID = users.userID )
GROUP BY users.username
ORDER BY articles.dateAdded DESC
LIMIT 15
And it brings up *close* to expected results except that it leaves out certain users. Who should be there. And these users do indeed have entries in the users table so it isn't a matter of the JOIN limiting the results.
Any possible ideas? I am KILLING myself with this.
SELECT users.username
FROM articles
INNER JOIN users ON ( articles.userID = users.userID )
GROUP BY users.username
ORDER BY articles.dateAdded DESC
LIMIT 15
And it brings up *close* to expected results except that it leaves out certain users. Who should be there. And these users do indeed have entries in the users table so it isn't a matter of the JOIN limiting the results.
Any possible ideas? I am KILLING myself with this.