为了账号安全,请及时绑定邮箱和手机立即绑定

MyBatis在注解上使用动态SQL(@select使用if)

MyBatis在注解上使用动态SQL(@select使用if)

POPMUISE 2019-03-12 18:49:40
@Select({            "<script>",            "select * from user_info where 1=1",            "<when test='name!=null and name!='' '>",            "and name = #{name}",            "</when>",            "</script>"})判断条件是name不为空并且不等于''(空字符串)这该怎么写呢?上面这个写法是错的
查看完整描述

2 回答

?
萧十郎

TA贡献1815条经验 获得超13个赞

这样试试

@Select("<script>" +    "select * from user_info where 1=1" +        "<where>" +            "<if test=test='name!=null and name!=''>" +                "and name = #{name}"+            "</if>" +        "</script>"


查看完整回答
反对 回复 2019-03-12
?
达令说

TA贡献1821条经验 获得超6个赞

https://img1.sycdn.imooc.com//5c878edd0001797b08000099.jpg

查看完整回答
反对 回复 2019-03-12
  • 2 回答
  • 0 关注
  • 16734 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信