示例#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;
 }