我是靠谱客的博主 要减肥冰淇淋,最近开发中收集的这篇文章主要介绍MyBatis动态拼接sql一、if标签二、foreach标签三、sql标签,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

一、if标签

<select id="selectByMoney" resultType="demo.entity.User">
select * from t_user
<where>
<if test="money != null and money != ''">
and money>1000
</if>
</where>
</select>

二、foreach标签

<select id="selectUserByIds" resultType="demo.entity.User">
select * from t_user
<where>
<foreach collection="ids" open="and id in(" item="id" separator="," close=")">
#{id}
</foreach>
</where>
</select>

三、sql标签

<sql id="sql_temp">
select id ,user_name, passwd, money from t_user
</sql>
<select id="login" resultType="demo.entity.User">
<include refid="sql_temp"></include> where user_name=#{userName} and passwd=#{passwd}
</select>

最后

以上就是要减肥冰淇淋为你收集整理的MyBatis动态拼接sql一、if标签二、foreach标签三、sql标签的全部内容,希望文章能够帮你解决MyBatis动态拼接sql一、if标签二、foreach标签三、sql标签所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(42)

评论列表共有 0 条评论

立即
投稿
返回
顶部