Quote:
Originally Posted by Zachariah
Code:
SELECT distinct threadid FROM ". TABLE_PREFIX . "post WHERE userid = '" . $vbulletin->userinfo['userid'] . "' ORDER BY postid DESC LIMIT 5
I would say you need to add single quotes around " . $vbulletin->userinfo['userid'] . "
|
It is a numeric column, so no quotes needed.
[sql]SELECT DISTINCT threadid FROM post WHERE userid = 1 ORDER BY dateline DESC LIMIT 5[/sql]
This
seems to work correct. But might need to test more with different test data.
What MySQL version are you using?