如何在DBgetquery中使用R對象?在DBgetquery中使用R對象
例如
我有R中一些選定的ID作爲topIds topIds = C( 'A', 'B', 'C' ......)
我希望查詢細節只有這些topID
query =dbgetquery(conn, " SELECT AGE , NAME
FROM table 1
where ID= paste0('topIds'))
如何將topIds R對象放入查詢中以獲取我的信息?