М
clients <- tbl(bd, "clients") %>%
filter (client_id %in% from_1C$customer_id) %>%
select(2, 8, 9, 10) %>% collect()
А вот так все выгрузил:vector <- from_1C$customer_id
clients <- tbl(bd, "clients") %>%
filter (client_id %in% vector) %>%
select(2, 8, 9, 10) %>% collect()