make_where | R Documentation |
Create a StmtWhere instance.
make_where(cond)
cond |
An Expr instance representing the condition for the WHERE clause. |
An instance of StmtWhere.
# To generate a WHERE clause checking if the "year" field is greater than
# 2000:
where <- make_where(ExprBinOp$new(ExprField$new("year"), ">",
ExprValue$new(2000)))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.