-
Notifications
You must be signed in to change notification settings - Fork 13
Open
Description
It would be nice if the seargeant package could create new tables as I can do with other database drivers. Something like this:
library(sergeant)
library(dplyr)
conn = dbConnect(Drill())
# Load original data
original_data = tbl(conn, "`dfs.downloads`.`original_data `")
# Do some operation
edited_data = original_data %>%
filter(name = "John")
# Write the result to a table without loading it into R
dbWriteTable(conn, table = "`dfs.downloads`.`edited_data`", values = edited_data )
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels