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