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