Hi all, is there a way to shorten the following code; perhaps by grouping by all the records in the articles table? It works fine but if anyone has any pointers on things that could be done better it would be appreciated.Thanks in advance.SELECT a.id,cast(a.article_text as varchar(1000)) as article_text,a.article_title,a.article_date,a.article_author,a.article_url,COUNT(c.pageid) as comment_countFROM articles a left join comments c on a.id = c.pageidGROUP BY a.id,cast(a.article_text as varchar(1000)),a.article_title,a.article_date,a.article_author,a.article_urlorder bya.article_date desc
I want to build a spaceship with ligthspeed capabilities and I don't even know what a wrench is.