Learn R Programming

rquery (version 0.5.0)

materialize_sql: Materialize a user supplied SQL statement as a table.

Description

Run the data query with a CREATE TABLE AS .

Usage

materialize_sql(db, sql, table_name = mk_tmp_name_source("rqms")(), ...,
  overwrite = TRUE, temporary = FALSE)

Arguments

db

DBI connecton.

sql

character, user supplied SQL statement.

table_name

character, name of table to create.

...

force later arguments to bind by name.

overwrite

logical if TRUE drop an previous table.

temporary

logical if TRUE try to create a temporary table.

Value

table handle

See Also

db_td, materialize, to_sql, rq_copy_to, mk_td

Examples

Run this code
# NOT RUN {
if (requireNamespace("DBI", quietly = TRUE) && requireNamespace("RSQLite", quietly = TRUE)) {
  my_db <- DBI::dbConnect(RSQLite::SQLite(), ":memory:")

  d <- rq_copy_to(my_db, 'd',
                   data.frame(AUC = 0.6, R2 = 0.2),
                   temporary = TRUE, overwrite = TRUE)
  t <- materialize_sql(my_db, "SELECT AUC, R2, AUC - R2 AS d FROM d")
  print(t)
  print(execute(my_db, t))

  DBI::dbDisconnect(my_db)
}

# }

Run the code above in your browser using DataLab