mirror of
https://github.com/magicbug/Cloudlog
synced 2024-11-23 18:24:25 +00:00
31 lines
755 B
PHP
31 lines
755 B
PHP
<?php
|
|
if (!defined('BASEPATH')) exit('No direct script access allowed');
|
|
|
|
class Dayswithqso_model extends CI_Model
|
|
{
|
|
function __construct()
|
|
{
|
|
// Call the Model constructor
|
|
parent::__construct();
|
|
}
|
|
|
|
function getDaysWithQso()
|
|
{
|
|
$CI =& get_instance();
|
|
$CI->load->model('Stations');
|
|
$station_id = $CI->Stations->find_active();
|
|
|
|
|
|
|
|
$sql = "select year(COL_TIME_ON) Year, COUNT(DISTINCT TO_DAYS(COL_TIME_ON)) as Days from "
|
|
.$this->config->item('table_name'). " thcv
|
|
where station_id = " . $station_id . " and COL_TIME_ON is not null group by year";
|
|
|
|
$query = $this->db->query($sql);
|
|
|
|
print_r($query->result());
|
|
|
|
return $query->result();
|
|
}
|
|
|
|
} |