gpt4 book ai didi

mysql - 如何使用 jdbcTemplate 在 IN 子句中传递列表参数

转载 作者:可可西里 更新时间:2023-11-01 06:40:24 27 4
gpt4 key购买 nike

<分区>

我想在 mysql 查询中使用 jdbcTemplate 在 IN 子句中传递列表值。如下所示,

 List<Long> listId= new ArrayList<>();
listId.add(1234L);
listId.add(1235L);
listId.add(1236L);

String type ="A";
List<BojoClass> result = new ArrayList<>();
String sql="select column1,column2 from table where columName in(?)"
result = jdbcTemplate.query(sql, new Object[]{listId}, new BeanPropertyRowMapper<BojoClass>(BojoClass.class));

如何以最佳方式实现这一目标?

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com