Granada\ORM::where_raw PHP 메소드

where_raw() 공개 메소드

Add a raw WHERE clause to the query. The clause should contain question mark placeholders, which will be bound to the parameters supplied in the second argument.
public where_raw ( string $clause, $parameters = [] )
$clause string
    public function where_raw($clause, $parameters = array())
    {
        return $this->_add_where($clause, $parameters);
    }
ORM