mybatis 注解中使用 in list 参数查询的写法
程序员文章站
2022-04-05 21:09:40
...
很多情况下,一个简单的固定参数查询,在mybatis中单独去写xml解决这个问题就有点小题大作了。替代方法是使用注解,直接在dao中写接口方法即可。本着精简的原则写一个示意给大家看
写道
/**
* 订单总金额
* @param billId
* @return
*/
@Select("select sum(price) from s_bill_detail where bill_id = #{billId}")
BigDecimal getBillCharge(@Param("billId") String billId);
* 订单总金额
* @param billId
* @return
*/
@Select("select sum(price) from s_bill_detail where bill_id = #{billId}")
BigDecimal getBillCharge(@Param("billId") String billId);
如果参数是一个集合类型,示例如下,主要方式是在原有SQL外包一层<script></script> 然后其中就可以按xml中的写法随意写了。
写道
/**
* 判断传入的素材编号中有哪些存在历史报价
* @param resIds
*/
@Select("<script>" +
"select\n" +
" distinct\n" +
" d.res_id\n" +
"from\n" +
" s_bill_detail d\n" +
"where\n" +
" d.confirm_time >= DATE_SUB(NOW() , INTERVAL 6 month)\n" +
" and d.res_id in" +
"<foreach collection='resIds' item='item' open='(' separator=',' close=')'>" +
"#{item} "+
"</foreach>" +
"</script>")
List<String> getPriceQuotedResIdsByResIds(@Param("resIds") List<String> resIds);
* 判断传入的素材编号中有哪些存在历史报价
* @param resIds
*/
@Select("<script>" +
"select\n" +
" distinct\n" +
" d.res_id\n" +
"from\n" +
" s_bill_detail d\n" +
"where\n" +
" d.confirm_time >= DATE_SUB(NOW() , INTERVAL 6 month)\n" +
" and d.res_id in" +
"<foreach collection='resIds' item='item' open='(' separator=',' close=')'>" +
"#{item} "+
"</foreach>" +
"</script>")
List<String> getPriceQuotedResIdsByResIds(@Param("resIds") List<String> resIds);
相信大家能举一反三,写个动态查询也没有问题了吧
推荐阅读
-
MyBatis中XML和注解的对比及使用
-
mybatis xml文件中传入参数和if结合使用时要注意的地方
-
linq中查询列表的使用及iqueryable和list集合之间的转换
-
主流数据库在mybatis中LIKE模糊查询的几种写法
-
为啥无法使用php中mysqli的准备语句进行数据库中数据的查询(绑定参数或者绑定结果),项目急用
-
为啥无法使用php中mysqli的准备语句进行数据库中数据的查询(绑定参数或者绑定结果),项目急用
-
MyBatis中XML和注解的对比及使用
-
代码-mysql中字段为text类型使用mybatis的Criteria查询无法进行封装
-
Mybatis的Mapper的多参数使用,list
-
mybatis中模糊查询的使用以及一些细节问题的注意事项