29 行
		
	
	
		
			无行尾
		
	
	
		
			719 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			29 行
		
	
	
		
			无行尾
		
	
	
		
			719 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);
 | |
| 
 | |
|         return $query->result();
 | |
|     }
 | |
| 
 | |
| } |