限制左键从添加的表中加入一个记录

时间:2013-08-21 10:00:58

标签: php mysql codeigniter join

现在的结果是它显示了相同的帖子,就像它拥有的照片一样多。 什么限制观看相同新闻的时间?

function get_all_news(){ 
   $query = $this->db->select('news.*, news_photos.name as news_photo_name, news_photos.ext as news_photo_ext')->from('news')->join('news_photos', 'news.id = news_photos.id_news', 'left')->order_by("date", "desc")->get();   
}

1 个答案:

答案 0 :(得分:0)

尝试在news.id上使用DISTINCT或GROUP BY。