コード例 #1
0
ファイル: DatabaseUpdate.php プロジェクト: acbramley/tdd7
 /**
  * Implements QueryConditionInterface::notExists().
  */
 public function notExists(SelectQueryInterface $select)
 {
     $this->condition->notExists($select);
     return $this;
 }
コード例 #2
0
ファイル: select.php プロジェクト: D4rk4/Kusaba-z
 public function havingNotExists(SelectQueryInterface $select)
 {
     $this->having->notExists($select);
     return $this;
 }