I am using DBPLYR to access a database. However, I would like to filter on two sets of dates. I know how to do this in SQL but not in dplyr or dbplyr.
The SQL code for this would be
(start_date between date '2017-01-01' and date '2017-03-31') or (start_date
between date '2018-01-01' and date '2018-03-31'))
How would I convert this to dplyr syntax?