QuerySelect | R Documentation |
Class for the SELECT query.
Class for the SELECT query.
This class represents an SQL SELECT query. See make_select() and make_select_all() factory functions to create more easily a SELECT query.
sqlq::Query
-> QuerySelect
new()
Initializer.
QuerySelect$new(select, from)
select
A StmtSelect instance.
from
A StmtFrom instance.
Nothing.
clone()
The objects of this class are cloneable with this method.
QuerySelect$clone(deep = FALSE)
deep
Whether to make a deep clone.
make_select
, make_select_all
# Here is a simple SELECT * query:
select <- QuerySelect$new(select = StmtSelectAll$new(),
from = StmtFrom$new("books"))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.