mybatis有没有annotation的动态SQL语句
1个回答
2017-09-26 · 知道合伙人软件行家
关注
展开全部
动态SQL语句是在Mybatis的对应的DAO的配置文件里有标签
比如:
<select id="dynamicIfTest" parameterType="Blog" resultType="Blog">
select * from t_blog where 11 = 1
<if test="title != null">
and title = #{title}
</if>
<if test="content != null">
and content = #{content}
</if>
<if test="owner != null">
and owner = #{owner}
</if>
</select>
如果提供的参数实体类里title不为空,则title = #{title} 也会加入到筛选条件中,后面同理,标签<if>只是其中一种,还有很多, 虽然没有悬赏,还是回答了~
比如:
<select id="dynamicIfTest" parameterType="Blog" resultType="Blog">
select * from t_blog where 11 = 1
<if test="title != null">
and title = #{title}
</if>
<if test="content != null">
and content = #{content}
</if>
<if test="owner != null">
and owner = #{owner}
</if>
</select>
如果提供的参数实体类里title不为空,则title = #{title} 也会加入到筛选条件中,后面同理,标签<if>只是其中一种,还有很多, 虽然没有悬赏,还是回答了~
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询