Viewing file: mo_rg_registwithdraw.php (3.72 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
include_once("da_rg_RegistWithdraw.php");
class Mo_rg_registwithdraw extends Da_rg_RegistWithdraw {
/**
* หน้าที่ของฟังก์ชั่น คือ หาข้อมูลการถอนรายวิชาตามเงื่อนไข
*
* @access public
* @param array condition โดยรูปแบบของ array จะอยู่ในรูป condition('key' => value) ไว้สำหรับระบุเงื่อนไขของคำสั่ง SELECT
* @param array order โดยรูปแบบของ array จะอยู่ในรูป condition('key' => value) ไว้สำหรับระบุเงื่อนไขการเรียงลำดับ ORDER BY
* @param array group โดยรูปแบบของ array จะอยู่ในรูป condition('key' => value) ไว้สำหรับระบุเงื่อนไขการจัดกลุ่ม GROUP BY
* @return query >= 1 rows : rg_RegistWithdraw.*
*/
public function qryRw($condition="",$order="",$group="") {
$where = $this->checkCondition($condition);
$order = $this->checkOrderBy($order);
$group = $this->checkGroupBy($group);
$c1 = substr($where, 0, -3);
$c2 = substr($order, 0, -1);
$c3 = substr($group, 0, -1);
$sql = "SELECT *
FROM $this->rg_dbname.rg_RegistWithdraw
$c1
$c3
$c2";
$query = $this->db->query($sql);
return $query;
}
/**
* หน้าที่ของฟังก์ชั่น คือ หาข้อมูลการถอนรายวิชา รายวิชาที่เปิดสอน และรายละเอียดของรายวิชาตามเงื่อนไข
*
* @access public
* @param array condition โดยรูปแบบของ array จะอยู่ในรูป condition('key' => value) ไว้สำหรับระบุเงื่อนไขของคำสั่ง SELECT
* @param array order โดยรูปแบบของ array จะอยู่ในรูป condition('key' => value) ไว้สำหรับระบุเงื่อนไขการเรียงลำดับ ORDER BY
* @param array group โดยรูปแบบของ array จะอยู่ในรูป condition('key' => value) ไว้สำหรับระบุเงื่อนไขการจัดกลุ่ม GROUP BY
* @return query >= 1 rows : rg_RegistWithdraw.*, rg_CourseOpen.*, rg_Course.*
*/
public function qryRwJoinCoCrs($condition="",$order="",$group="") {
$where = $this->checkCondition($condition);
$order = $this->checkOrderBy($order);
$group = $this->checkGroupBy($group);
$c1 = substr($where, 0, -3);
$c2 = substr($order, 0, -1);
$c3 = substr($group, 0, -1);
$sql = "SELECT *
FROM $this->rg_dbname.rg_RegistWithdraw
INNER JOIN $this->rg_dbname.rg_CourseOpen ON rwCoId=coId
INNER JOIN $this->rg_dbname.rg_Course ON coCrsId=crsId
$c1
$c3
$c2";
$query = $this->db->query($sql);
return $query;
}
function qryRwJoinCoCrsRg($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_RegistWithdraw
INNER JOIN $this->rg_dbname.rg_CourseOpen ON rwCoId = coId
INNER JOIN $this->rg_dbname.rg_Course ON coCrsId = crsId
INNER JOIN $this->rg_dbname.rg_Regist ON rwStdId = rgStdId AND rwAcY = rgAcY AND rwTmId = rgTmId AND rwSeq = rgSeq
$c1
$c2";
$query = $this->db->query($sql);
return $query;
}
}
?>
|