StmtUpdate | R Documentation |
UPDATE statement.
UPDATE statement.
This class represents a SQL UPDATE statement. It requires a table name.
sqlq::Statement
-> StmtUpdate
new()
Initializer.
StmtUpdate$new(tabl)
tabl
A table name.
Nothing.
getTokens()
Generates the list of tokens representing this statement.
StmtUpdate$getTokens()
A list of Token objects.
clone()
The objects of this class are cloneable with this method.
StmtUpdate$clone(deep = FALSE)
deep
Whether to make a deep clone.
# Create an UPDATE statement for table 'books':
update <- StmtUpdate$new("books")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.