create_table {SCDB} | R Documentation |
Create a historical table from input data
Description
Create a historical table from input data
Usage
create_table(.data, conn = NULL, db_table, ...)
Arguments
.data |
( |
conn |
( |
db_table |
( |
... |
Other arguments passed to |
Value
Invisibly returns the table as it looks on the destination (or locally if conn
is NULL
).
Examples
conn <- get_connection()
create_table(mtcars, conn = conn, db_table = "mtcars")
close_connection(conn)
[Package SCDB version 0.4.0 Index]