It is common to send SQL to an OMOP CDM database from R. This vignette describes one process for including SQL in your analytic package or study.
library(CDMConnector)
If your study needs to run across multiple database platforms then
you will need a way to translate SQL into the different dialects used by
each database. The SqlRender
package provides this
functionality. Start by creating an R function that includes the SQL you
want to run and takes a database connection as the first argument.
Additional query parameters should be added as detail arguments after
the first one.
<- function(con, cdm_schema, ingredient_concept_id) {
count_drug_records
# Write the SQL in an R function replacing the parameters
<- glue::glue("
sql select count(*) as drug_count
from {cdm_schema}.drug_exposure de
inner join {cdm_schema}.concept_ancestor ca
on de.drug_concept_id = ca.descendant_concept_id
where ca.ancestor_concept_id = {ingredient_concept_id}")
# Translate the sql to the correct dialect
<- SqlRender::translate(sql, targetDialect = dbms(con))
sql
# Execute the SQL and return the result
::dbGetQuery(con, sql)
DBI }
library(DBI)
<- DBI::dbConnect(RPostgres::Postgres(),
con dbname = "cdm",
host = "localhost",
user = "postgres",
password = Sys.getenv("password"))
count_drug_records(con, cdm_schema = "synthea1k", ingredient_concept_id = 923672)
#> # A tibble: 1 × 1
#> drug_count
#> <dbl>
#> 1 11
The CDMConnector package has a function dbms
that will
return the correct dialect for a connection.
dbms(con)
#> [1] "postgresql"
SQLRender
also includes a function called
render
to insert values into parameterized SQL.
<- function(con, cdm_schema, ingredient_concept_id) {
count_drug_records
# Write the SQL in an R function replacing the parameters
<- SqlRender::render("
sql select count(*) as drug_count
from @cdm_schema.drug_exposure de
inner join @cdm_schema.concept_ancestor ca
on de.drug_concept_id = ca.descendant_concept_id
where ca.ancestor_concept_id = @ingredient_concept_id",
cdm_schema = cdm_schema,
ingredient_concept_id = ingredient_concept_id)
# Translate the sql to the correct dialect
<- SqlRender::translate(sql, targetDialect = dbms(con))
sql
# Execute the SQL and return the result
::dbGetQuery(con, sql)
DBI
}
count_drug_records(con, cdm_schema = "synthea1k", ingredient_concept_id = 923672)
#> # A tibble: 1 × 1
#> drug_count
#> <dbl>
#> 1 11
SqlRender
translates a particular dialect of SQL known
as OHDSI-SQL to various supported database platforms. OHDSI-SQL is
loosely defined as a subset of Microsoft T-SQL used by SQL Server. It
also has branching logic and parameterization added to it.
More details about using SqlRender to run SQL across multiple database platforms can be found in the “SQL and R” chapter of the “The Book of OHDSI”.
The OHDSI Query Library contains example SQL queries for the OMOP CDM.