如何从codeigniter中的数据库同时从同一列获取最小值和最大值?

时间:2016-09-13 12:23:24

标签: php codeigniter

我希望在CodeIgniter中使用一个查询同时获取最小值和最大值。

这是我的代码段:

$this->db->select_min('table.col1');
$this->db->select_max('table.col1');
$this->db->select('table.col2');
$this->db->from('atm_rates');
$this->db->order_by('table.col2');
$query = $this->db->get();
return $query->result_array();

1 个答案:

答案 0 :(得分:0)

您可以尝试以下选择:

$this->db->select('MAX(col1), MIN(col1)'); $query = $this->db->get('table');

OR

$sql = "SELECT MAX(col1) AS max, MIN(col1) as min FROM table; $query = $this->db->query($sql)->get();

然后

return $query->result_array();