예제 #1
0
파일: Builder.php 프로젝트: Rgss/imp
 /**
  * decrement sql
  * 
  * @return string
  */
 public function decrementQuery()
 {
     $sql = 'UPDATE ' . $this->getFullTableName() . ' SET ' . $this->getBindField() . ' = ' . $this->getBindField() . ' - ' . $this->getBindValue() . ' ' . $this->db->getWhere() . ' ' . $this->db->getHaving() . ' ' . $this->db->getLimit();
     return $sql;
 }