sql_delete: Deletes data from tables with SQL queries

Description Usage Arguments Examples

View source: R/sql_delete.R

Description

Deletes data from tables with SQL queries

Usage

1
sql_delete(table, where_condition = "*")

Arguments

table

the table to delete from

where_condition

a string of conditions used to specify, need to use escape key for quotes

Examples

1
2
sql_delete("people", c("name = \"Maria\" OR age = 28 AND gender = \"female\"")
sql_delete("car", c("make = \"Toyota\" AND model = \"Camry\""))

jeffchang5/SQLiter documentation built on May 19, 2019, 1:48 a.m.