This function uses syntax similar to dplyr::select and can be used to
subset a cdm reference object to a specific tables
Arguments
- cdm
A cdm reference object created by
cdm_from_con- ...
One or more table names of the tables of the
cdmobject.tidyselectis supported, seedplyr::select()for details on the semantics.
Examples
if (FALSE) { # \dontrun{
con <- DBI::dbConnect(duckdb::duckdb(), dbdir = eunomiaDir())
cdm <- cdmFromCon(con, "main")
cdmSelectTbl(cdm, person)
cdmSelectTbl(cdm, person, observation_period)
cdmSelectTbl(cdm, tblGroup("vocab"))
cdmSelectTbl(cdm, "person")
DBI::dbDisconnect(con)
} # }