MyBatis的动态SQL

<!--<if>标签:它的test属性中写的是对象的属性名,如果是包装类的对象,要使用OGNL表达式的写法,同时要注意where 1=1的作用-->
<select id="findByUser" resultType="user" parameterType="user">
	select * from user where 1=1 
	<if test="username != null and username != ''">
		and username like #{username}
	</if>
	<if test="address!=null">
		and address like #{address}
	</if>
</select>	
<!--<where>标签:为了简化上面where 1=1条件拼装,我们可以采用<where>标签来简化开发-->
<select id="findByUser" resultType="user" parameterType="user">
	select * from user 
	<where>
		<if test="username!=null and username!=''">
			and username like #{username}
		</if>
		<if test="address != null ">
			and address like #{address}
		</if>
	</where>
</select>
<!--<foreach>标签-->
<select id="findInIds" resultType="user" parameterType="queryVo">
<!--select * from user where id in (1,2,3,4,5);-->
	select * from user
	<where>
		<if test ="ids!=null and ids.size()>0">
			<foreach collection="ids" open="id in (" close=")" item="uid" separator=",">
			#{uid}
			</foreach>
		</if>
	</where> 
</select>

foreach标签用于遍历集合,它的属性:
collection:代表要遍历的集合元素
open:代表语句的开始部分
close:代表语句的结束部分
item:代表遍历集合的每个元素,生成的变量名
separator:代表分隔符

Sql中可将重复的sql提取出来,使用时用include引用即可,最终达到sql重用的目的。


	select * from user


你可能感兴趣的:(框架,SQL)