1

我有一张桌子

id  typesignal close open cont

1    4    150    300    2

2    3    20    40    1

3    2    50    75    15

4    1    15.2    30.8    5

5    1    200    225    8

6    6    200    500    8

7    7    10    20    4

8    8    9    12    2

9    9    5    8    3

10    5    40    50    4

11    4    5    8    9

12    5    4    2    3

13    8    5    4    0

我想显示列中每种类型的最后一行typesignal

$this->db->group_by('typesignal');
$query = $this->db->get('signals');

但我需要我使用的最后一行

$this->db->group_by('typesignal');
$this->db->order_by("idSignal");
$query = $this->db->get('signals');

但它不工作。

预期的输出是:13,12,11,9,8,7,6,5,3,2

4

1 回答 1

0

我使用这个查询

$this->db->group_by('typeSignal');


$this->db->select_max('idSignal');


$this->db->order_by("idSignal", "DESC");            


$query = $this->db->get('signals');


return $query->result_array();

正在工作的秘密是 $this->db->select_max('idSignal');

感谢您的帮助

于 2012-08-24T15:33:27.713 回答