Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

grepl for dplyr sql table?

is there a workaround to use something like

filter(df, grepl("A|B|C",location))

for a dplyr SQL table? In SQL it is probalby a LIKE. Of cource I could convert the SQL table to a R data table, but it is very large. (http://cran.r-project.org/web/packages/dplyr/vignettes/databases.html) At the moment I get

Error in sqliteSendQuery(conn, statement) : 
  error in statement: no such function: GREPL

thx Christof

like image 302
ckluss Avatar asked Dec 14 '14 09:12

ckluss


1 Answers

Using sql to translate the expression directly into sql is one option.

sql_table %>% filter( sql("location LIKE 'A%' 
                           OR location LIKE 'B%' 
                           OR location LIKE 'C%'")

Which will inject the following into the WHERE statement of your query:

<SQL> location LIKE 'A%' OR location LIKE 'B%' OR location LIKE 'C%'
like image 168
Seth Raithel Avatar answered Sep 26 '22 02:09

Seth Raithel