We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
The WITH clause accepts a list of expression, with optionally an alias for each expression.
WITH
$statement = Query::new() ->with(["n" => Query::variable("a")]) ->build(); $this->assertSame("WITH a AS n", $statement);