I have few blank values in one of my columns in dataset. I need to make sql query to database with only this few id (86) that contain missing value.
I have in mind something like that (not just paste id to in statement):
SELECT x.id,
x.sent
FROM x
WHERE x.id IN [my R vector with id]
glue_sqlwill expand vectors into a comma separated list if you use*after the variable name in theglueexpression.conis a DBI connection to your database