Mysql
 sql >> Database >  >> RDS >> Mysql

Come passare ArrayList<> come clausola IN nella query SQL in MySQL

Costruisci l'istruzione SQL con il numero corretto di marcatori e imposta tutti i valori.

Attenzione:i database hanno un limite al numero di parametri consentiti, sebbene sia molto alto per MySQL (65535 ).

char[] markers = new char[list.size() * 2 - 1];
for (int i = 0; i < markers.length; i++)
    markers[i] = (i & 1 == 0 ? '?' : ',');
String sql = "select * from employee where id in (" + markers + ")";
try (PreparedStatement stmt = conn.prepareStatement(sql)) {
    int idx = 1;
    for (String value : list)
        stmt.setString(idx++, value);
    try (ResultSet rs = stmt.executeQuery()) {
        while (rs.next()) {
            // code here
        }
    }
}