bokiBiabu 2022-05-27 14:25 采纳率: 40%
浏览 277
已结题

mybatis-plus 不用QueryWrapper怎么实现自定义sql的in查询

mybatis-plus 不用QueryWrapper怎么实现自定义sql in查询

@Select("SELECT s.id submit_id,s.create_time,s.submit_content,s.rule_id,s.is_overtime,s.staff_id,t.staff_name,t.staff_avatar " +
        "FROM application.report_submit s LEFT JOIN application.enterprise_staff t on t.staff_id = s.staff_id " +
        "where s.id in (${coll})")
List<Map<String,Object>> testGetList(@Param(Constants.COLLECTION) List<Integer> ids);

这个生成的sql 后面 是这样where s.id in ([20, 21, 22])
或者

@Select("SELECT s.id submit_id,s.create_time,s.submit_content,s.rule_id,s.is_overtime,s.staff_id,t.staff_name,t.staff_avatar " +
        "FROM application.report_submit s LEFT JOIN application.enterprise_staff t on t.staff_id = s.staff_id " +
        "where s.id in " +
       "<foreach collection=#{ids} item=id index=index" +
        " open=\"(\" close=\")\" separator=\",\">" +
        "   #{id}" +
        "</foreach>")
List<Map<String,Object>> testGetList(@Param("ids") List<Integer> ids);

这个就报错 id找不到 #{id}

因为wrapper好像只能传一个 所以 有些条件得这样写 或者说 可不可以传多个wrapper进查询
@Param(Constants.WRAPPER) Wrapper wrapper

  • 写回答

6条回答 默认 最新

  • 皮蛋不吃粥 2022-05-27 14:35
    关注

    querywrapper 直接in

    
            new QueryWrapper<>()
                    .in()
    

    img

    评论 编辑记录

报告相同问题?

问题事件

  • 已结题 (查看结题原因) 8月19日
  • 创建了问题 5月27日

悬赏问题

  • ¥30 STM32 INMP441无法读取数据
  • ¥100 求汇川机器人IRCB300控制器和示教器同版本升级固件文件升级包
  • ¥15 用visualstudio2022创建vue项目后无法启动
  • ¥15 x趋于0时tanx-sinx极限可以拆开算吗
  • ¥500 把面具戴到人脸上,请大家贡献智慧
  • ¥15 任意一个散点图自己下载其js脚本文件并做成独立的案例页面,不要作在线的,要离线状态。
  • ¥15 各位 帮我看看如何写代码,打出来的图形要和如下图呈现的一样,急
  • ¥30 c#打开word开启修订并实时显示批注
  • ¥15 如何解决ldsc的这条报错/index error
  • ¥15 VS2022+WDK驱动开发环境