MySQL version 4.1.18
If I run the following Query, here are my results (I increase the limit number to show)
SELECT distinct threadid FROM post WHERE userid = 1 ORDER BY postid DESC LIMIT 15
Gives me the following:
threadid
1355
140
1321
1338
140
1334
1333
1311
1332
1319
1311
1284
1312
1311
1308
Those are my actual last 15 posts. Now if I add distinct, this is what I get:
SELECT distinct threadid FROM post WHERE userid = 1 ORDER BY postid DESC LIMIT 15
threadid
1355
1321
1338
1334
1333
1332
1319
1284
1312
1311
1310
1309
1308
1300
1288
Notice all the lower threadid's are not included.
Any ideas?
|