Regions
table on PROD1
in Schools
schemaget_regions.Rd
Connect to Regions
table on PROD1
in Schools
schema
get_regions()
a tbl_sql SQL Server
object.
# This attaches to the school db with \code{conn_PROD1} connection
if (FALSE) {
stus <- get_students()
}
# This pulls down schools data form the DB and onto your computer
# and then cleans the names (lower snakecase) using [janitor::clean_names()]
if (FALSE) {
regions <- get_regions() %>%
collect() %>%
clean_names()
}