java sql in怎么用参数

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java sql in怎么用参数相关的知识,希望对你有一定的参考价值。

from 实体类 where 1=1 and 字段名 in ('条件1','条件2')

在括号里 可以有多个 你也可以拼好字符串直接把变量放在括号内.
参考技术A select * from table where XXX in (1,2,3,4,5)

mybatis sql in 查询(mybatis sql语句传入参数是list)mybatis中使用in查询时in怎么接收值

1.in查询条件是list时

<select id="getMultiMomentsCommentsCounts" resultType="int">
select moment_comment_count from tbl_moment_commentCount where mid in
<foreach item="item" index="index" collection="list" open="(" separator="," close=")"> 
    #{item} 
</foreach> 
</select>

.1 如果参数的类型是List, 则在使用时,collection属性要必须指定为 list

  1. <select id="findByIdsMap" resultMap="BaseResultMap">  
  2.  Select  
  3.  <include refid="Base_Column_List" />  
  4.  from jria where ID in  
  5.  <foreach item="item" index="index" collection="list" open="(" separator="," close=")">  
  6.   #{item}  
  7.  </foreach>  
  8. </select>  

2.in查询条件是枚举值时

默认下,使用select xxx where in(xx,xx)查询,返回结果是按主键排序的,如果要按in()中值的排列顺序,可以这样做:
 
select * from talbe where id in(3,2,4,1) ORDER BY FIND_IN_SET( id, ‘3,2,4,1‘) 

以上是关于java sql in怎么用参数的主要内容,如果未能解决你的问题,请参考以下文章

我有个SQL in 使用参数传递怎么弄?

SQL 存储过程中参数怎么使用

java.sql.SQLException:索引处缺少 IN 或 OUT 参数:: 1

mybatis sql in 查询(mybatis sql语句传入参数是list)mybatis中使用in查询时in怎么接收值

关于Java的sql动态参数

线程“主”java.sql.SQLException 中的异常:索引处缺少 IN 或 OUT 参数:: 25 这个错误是啥意思