Skip to content

SET clause

Marijn van Wezel edited this page Oct 13, 2021 · 5 revisions

The SET clause accepts a set of expressions to set.

Examples

$a = Query::variable("a");
$b = Query::variable("b");

$statement = Query::new()
	->set([$a, $b])
	->build();

$this->assertSame("SET a, b", $statement);
Clone this wiki locally