gpt4 book ai didi

php - codeigniter 不同的 mysql 查询

转载 作者:行者123 更新时间:2023-11-29 01:17:39 26 4
gpt4 key购买 nike

每当我在模型中使用 get_where 时,它​​都会为我提供所有数据库条目,包括重复项,而当我仅使用 get_where 时,它​​只会为我提供第一个条目。但我想要所有不同的条目。谁能帮帮我。非常感谢!

Controller = site.php:

public function western_australia(){
$this->load->model("continents_get");
$data["results"] = $this->continents_get
->getMaincategories("western_australia");
$this->load->view("content_western_australia", $data);
}

模型 = continents_get.php

function getMaincategories($western_australia){
$this->db->distinct();
$query = $this->db->get_where("p_maincategories",
array("page" => $western_australia));
return $query->result();
}

view = content_western_australia.php

<?php
foreach($results as $row){
$page = $row->page;
$main_en = $row->main_en;
echo $main_en;
?>

最佳答案

Distinct 并不总是有效。您应该添加 ->group_by("name_of_the_column_which_needs_to_be unique");

关于php - codeigniter 不同的 mysql 查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12130905/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com