I'm trying to pass database query to strings using dplyr filter functions
here is the code
main<-tbl(portal, "account")%>%
filter( dates >= "1640991600" & dates <= "1641077999")%>%
collect()%>%
as.character()
but it's not working, any help would be welcome