yii\db\QueryTrait::where PHP 메소드

where() 공개 메소드

See [[QueryInterface::where()]] for detailed documentation.
또한 보기: andWhere()
또한 보기: orWhere()
public where ( string | array $condition )
$condition string | array the conditions that should be put in the WHERE part.
    public function where($condition)
    {
        $this->where = $condition;
        return $this;
    }