我在http://www.xaluan.com从事项目 tintuc
我有两张这样简单的桌子
table articles
ID - Title - Des - CatID
table category
CatID - catTitle
通常我会在类别表上运行循环以接收 CatID 和 catTile,然后在文章表上再次运行循环以使 4 篇最新文章属于该 CatID
结果在这样的网站上
catTitle 1
- lastes article belong to catID 1
- second last artice belong to catID 1
catTitle 2
- lastess article belong to catID 2
- second last article belong to catID 2
我认为循环遍历类别表然后在每个 catId 的文章表上循环多次不是有效的方式。
请帮助最有效的mysql查询以获得相同的结果。
非常感谢。