Viewing file: mo_rg_summarystudent.php (3.11 KB) -rwxr-xr-x Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
include_once("da_rg_SummaryStudent.php");
class Mo_rg_summarystudent extends Da_rg_SummaryStudent {
function qrySm($condition="",$order="") {
$where = $this->checkCondition($condition);
$order = $this->checkOrderBy($order);
$c1 = substr($where, 0, -3);
$c2 = substr($order, 0, -1);
$sql = "SELECT *
FROM $this->rg_dbname.rg_SummaryStudent
$c1
$c2";
$query = $this->db->query($sql);
return $query;
}
/*
* create array of pk field and value for generate select list in view, must edit PK_FIELD and FIELD_NAME manually
* the first line of select list is '-----เลือก-----' by default.
* if you do not need the first list of select list is '-----เลือก-----', please pass $optional parameter to other values.
* you can delete this function if it not necessary.
*/
function get_options($optional='y') {
$qry = $this->get_all();
if ($optional=='y') $opt[''] = '-----เลือก-----';
foreach ($qry->result() as $row) {
$opt[$row->PK_FIELD] = $row->FIELD_NAME;
}
return $opt;
}
// add your functions here
function qrySmByAcYNumAdmitSt($acY) {
$sql = "SELECT *
FROM $this->rg_dbname.rg_SummaryStudent
INNER JOIN $this->rg_dbname.rg_Curriculum ON smCurId = curId
INNER JOIN $this->rg_dbname.rg_EntryType ON smEtId = etId
WHERE smAcY = ?
AND smNumAdmitSt <> 0";
$query = $this->db->query($sql, array($acY));
return $query;
}
function qrySmByAcYNumGraduateSt($acY) {
$sql = "SELECT *
FROM $this->rg_dbname.rg_SummaryStudent
INNER JOIN $this->rg_dbname.rg_Curriculum ON smCurId = curId
INNER JOIN $this->rg_dbname.rg_EntryType ON smEtId = etId
WHERE smAcY = ?
AND smNumGraduateSt <> 0";
$query = $this->db->query($sql, array($acY));
return $query;
}
function qrySmByAcYNumScholarSt($acY) {
$sql = "SELECT *
FROM $this->rg_dbname.rg_SummaryStudent
INNER JOIN $this->rg_dbname.rg_Curriculum ON smCurId = curId
INNER JOIN $this->rg_dbname.rg_EntryType ON smEtId = etId
WHERE smAcY = ?
AND smNumScholarSt <> 0";
$query = $this->db->query($sql, array($acY));
return $query;
}
function getSumNumAdmitSt($condition="") {
$where = $this->checkCondition($condition);
$c1 = substr($where, 0, -3);
$sql = "SELECT SUM(smNumAdmitSt) AS num
FROM $this->rg_dbname.rg_SummaryStudent
$c1";
$query = $this->db->query($sql);
return $query->row()->num;
}
function getSumNumGraduateSt($condition="") {
$where = $this->checkCondition($condition);
$c1 = substr($where, 0, -3);
$sql = "SELECT SUM(smNumGraduateSt) AS num
FROM $this->rg_dbname.rg_SummaryStudent
$c1";
$query = $this->db->query($sql);
return $query->row()->num;
}
function getSumNumScholarSt($condition="") {
$where = $this->checkCondition($condition);
$c1 = substr($where, 0, -3);
$sql = "SELECT SUM(smNumScholarSt) AS num
FROM $this->rg_dbname.rg_SummaryStudent
$c1";
$query = $this->db->query($sql);
return $query->row()->num;
}
} // end class Mo_rg_summarystudent
?>
|