Spring JPA @Query 动态查询
常规动态参数实现:使用 ?数字 的参数类型@Query(value = "select a.* from user a where " + "and (?1 is null or a.name = ?1) " + "and (?2 is null or a.email = ?1) ") List<User> findUsersByNameAndEmail(String name , String email);in 条件的动态查询
原创
2021-06-18 17:37:30 ·
1790 阅读 ·
0 评论