We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
Can dplyr support the between operator when working with sqlite?
Sadly the following fails:
data <- lahman_sqlite() tbl(data, "AllstarFull") %>% filter(between(yearID, 1933, 1947)) Source: sqlite 3.7.17 [C:\Users\.../lahman.sqlite] Error in sqliteExecStatement(conn, statement, ...) : RS-DBI driver: (error in statement: near "BETWEEN": syntax error)
But this works:
sql.conn <- dbConnect(dbDriver("SQLite"), "C:/.../lahman.sqlite") dbGetQuery(sql.conn, "select * from AllstarFull WHERE yearID BETWEEN 1934 AND 1947")
The text was updated successfully, but these errors were encountered:
fd9dc17
Implement between. Closes tidyverse#503
ed6b672
hadley
No branches or pull requests
Hi,
Can dplyr support the between operator when working with sqlite?
Sadly the following fails:
But this works:
The text was updated successfully, but these errors were encountered: