wie schaffst du das?
probiers mal mit dem:
SELECT tblThread.*,max(tblPost.PostDatum),
ifnull(max(tblPost.PostDatum),tblThread.ThreadDatu m) as DeppadesFeld
FROM tblThread
LEFT JOIN tblPost
ON tblThread.TH_ID=tblPost.TH_ID
GROUP BY tblThread.TH_ID
ORDER BY DeppadesFeld DESC
das funktioniert bei mir wonderbra...
