make_select_all | R Documentation |
Create a QuerySelectAll instance (i.e.: select *) to retrieve all fields of a table.
make_select_all(
tabl,
distinct = FALSE,
limit = NULL,
where = NULL,
join = NULL
)
tabl |
A table name. |
distinct |
If set to TRUE, add the distinct keyword. |
limit |
Add a limit (integer value) to the number of records returned. |
where |
Set a StmtWhere instance to add a where clause. |
join |
Set a StmtJoin instance to add a join clause. |
A instance of QuerySelect.
# Here is a simple SELECT * query:
make_select_all("books")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.