Cloudlog/application/models/Cq.php

22 wiersze
436 B
PHP
Czysty Zwykły widok Historia

2016-04-13 15:16:07 +00:00
<?php
class CQ extends CI_Model{
function __construct(){
// Call the Model constructor
parent::__construct();
}
function get_zones(){
$data = $this->db->query(
"select COL_CQZ, count(COL_CQZ)
2019-06-17 16:44:50 +00:00
from ".$this->config->item('table_name')."
2016-04-13 15:16:07 +00:00
where COL_CQZ is not null
group by COL_CQZ order by COL_CQZ"
);
return $data->result();
}
}