Skip to content

Instantly share code, notes, and snippets.

@edgararuiz-zz
Created November 3, 2017 17:34
Show Gist options
  • Save edgararuiz-zz/cf4f1482076f16240b14a71e363f5905 to your computer and use it in GitHub Desktop.
Save edgararuiz-zz/cf4f1482076f16240b14a71e363f5905 to your computer and use it in GitHub Desktop.
library(dplyr)
con <- DBI::dbConnect(RSQLite::SQLite(), path = ":memory:")
db_mtcars <- copy_to(con, mtcars)
DBI::dbListTables(con)
db_mtcars %>%
filter(am == 1) %>%
show_query()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment