I need to do select * based on a list of input ids, what's the best way of batch select? here's what I have
StringBuilder inClause = new StringBuilder();
boolean firstValue = true;
for (int i=0; i < batchSize; i++) {
inClause.append('?');
if ( firstValue ) {
firstValue = false;
} else {
inClause.append(',');
}
}
PreparedStatement stmt = conn.prepareStatement(
"select id, name from users where id in (" + inClause.toString() + ')');
for (int i=0; i < batchSize; i++) {
stmt.setInt(i); // or whatever values you are trying to query by
}