mini\Parsing\SQL\AST\InOperation
class
Documentation
IN / NOT IN operation node
Examples:
- col IN (1, 2, 3) → values is array of LiteralNode
- col IN (SELECT id FROM t) → values is SubqueryNode
- col NOT IN (...) → negated = true
Inheritance
Extends: mini\Parsing\SQL\AST\ASTNode
Implements:
JsonSerializable
Properties (4)
public
string $type
public
bool $negated
Methods (4)
Documentation missing
Check if values is a subquery
public
jsonSerialize()
inherited from Parsing\SQL\AST\ASTNode
Documentation missing
public
deepClone()
inherited from Parsing\SQL\AST\ASTNode
Create a deep clone of this AST node