I have found an example from the oracle
crate documentation:
let sql = "select ename, sal, comm from emp where deptno = :1";
let rows = conn.query(sql, &[&30])?;
But I have a list of values: client_ids: Vec<String>
.
Can I bind a vec/slice value and execute a where in / any
query?