Creates a database table given a connection, table name, and:
SQL file specifying the table's schema
CSV file to seed the table's values
Usage
create_tbl(
conn,
tbl_name,
csv_path = "data-raw/database/CSV",
sql_path = "data-raw/database/SQL",
drop_if_exists = TRUE
)
Value
the created database table returned as an R data.frame()
.