首页 > 代码库 > Mybatis的<where><if>标签

Mybatis的<where><if>标签

<select id="selectUserByProvinceAndCity" resultMap="BaseResultMap">
		SELECT *
		FROM user_user_t
		<where> 
		<if test="provinceId != 0">
		province_id=#{provinceId}
		</if>
		<if test="provinceId == 0">
		province_id LIKE CONCAT('%','${provinceId}','%' ) 
		</if>
		</where>
		LIMIT #{pageIndex},#{pageSize}
	</select>


上面这段代码的意思是,在查询user表时,判断省份id是否为0,如果省份Id为0,那么就查找用户表中省份Id包含0的记录,否则,就查找省份Id等于provinceId的记录。

Mybatis的<where><if>标签