Is there a more succinct way to get one column of a dplyr tbl as a vector, from a tbl with database back-end (i.e. the data frame/table can\'t be subset directly)?
I would use the extract2 convenience function from magrittr:
extract2
magrittr
library(magrittr) library(dplyr) iris2 %>% select(Species) %>% extract2(1)