Basically I have two tables, one for news, and one for results.
I am doing a
SELECT * FROM `news` AS t1, `news_comments` AS t2 WHERE t1.id = t2.newsid ORDER BY t1.date DESC, t1.id DESC, t2.com_datetime DESC
query, and to start off with I already had comments I had inserted manually, it worked PERFECTLY! That was until of course, I deleted all of the comments, then I get absolutely no result from this query.
Is there any way to get round this, where it still returns results even if there are no comments. :quiet:
Cheers in advance (I know its probably something really easy 😉)