dbCreateTableAs {RPresto} | R Documentation |
Create a table in database using a statement
Description
Create a table in database using a statement
Usage
dbCreateTableAs(conn, name, sql, overwrite = FALSE, with = NULL, ...)
Arguments
conn |
A DBIConnection object, as returned by
|
name |
The table name, passed on to
|
sql |
a character string containing SQL statement. |
overwrite |
A boolean indicating if an existing table should be overwritten. Default to FALSE. |
with |
An optional WITH clause for the CREATE TABLE statement. |
... |
Other parameters passed on to methods. |
[Package RPresto version 1.4.6 Index]