ExprIsNull | R Documentation |
This class represents the IS NULL test.
This class represents the IS NULL test.
Used to test if a field is NULL inside a WHERE clause.
sqlq::Statement
-> sqlq::Expr
-> sqlq::ExprComp
-> ExprIsNull
new()
Initializer.
ExprIsNull$new(expr, ...)
expr
The Expr instance to test.
...
Arguments to pass to parent class.
Nothing.
getTokens()
Generates the list of tokens representing this statement.
ExprIsNull$getTokens()
A list of Token objects.
clone()
The objects of this class are cloneable with this method.
ExprIsNull$clone(deep = FALSE)
deep
Whether to make a deep clone.
# To generate a NULL test:
ExprIsNull$new(ExprField$new("title"))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.