phprs\ezsql\rules\update\UpdateSetRule::set PHP Method

set() public method

update('table')->set('a', 1) => "UPDATE table SET a=1" update('table')->set('a', 1)->set('b',Sql::native('now()')) => "UPDATE table SET a=1,b=now()"
public set ( string $column, mixed $value ) : UpdateSetRule
$column string
$value mixed
return UpdateSetRule
    public function set($column, $value)
    {
        $this->impl->set($this->context, $column, $value);
        return $this;
    }