-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdb_10.R
36 lines (24 loc) · 962 Bytes
/
db_10.R
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# attach relevant packages
library(DBI)
### First steps ################################################################
# Connection -------------------------------------------------------------------
con <- dbConnect(duckdb::duckdb())
con
# Discover tables --------------------------------------------------------------
dbListTables(con)
# Populate database (normally done by other people) ---------------------------
# Magic: import tables into the database
dm::copy_dm_to(
con,
dm::dm_pixarfilms(),
set_key_constraints = FALSE,
temporary = FALSE
)
# Discover tables --------------------------------------------------------------
dbListTables(con)
dbListFields(con, "box_office")
# First steps: Exercises -------------------------------------------------------
con
# 1. List all columns from the `pixar_films` table.
# 2. Review the help for `dbListFields()` and `dbListTables()`,
# and the index on <https://dbi.r-dbi.org/reference/>.