queryPage(String key,S..._springboot判断传参是否存在使用where语句">
赞
踩
直接上代码:
- @Query(value = "select * from table_name where if(?1!=null and ?1!='',key=?1,1=1) and if(?2!=null and ?2!='',key2=?2,1=1),nativeQuery = true)
- public List<User> queryPage(String key,String key2);
使用条件:当有多个查询条参数且有时参数会为空时,为了避免写多个参数不同的查询函数,可以使用该方法。
理解:if(?1!=null and ?1!='',key=?1,1=1)
如果?1!=null and ?1 !=''成立,则返回key=?1,否则返回1=1
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。