R/where.R

#' @title SQL Where Statement
#' @rdname where
#' @export where
where <- function (x, ...) 
  UseMethod('where', x)

#' @rdname where
#' @method where character
#' @S3method where character
where.character <- function (x, ...) {
  sprintf(x, ...)
}

# Where IN ??? 
cttobin/sqlr documentation built on May 14, 2019, 12:42 p.m.