その結果、同じ投稿が、持っている写真の何倍も表示されます。同じニュースの閲覧回数を制限するには??
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();
}