if标签通常用于where语句、update语句、insert语句中
where: 通过判断参数值来决定是否使用某个查询条件
update: 通过判断参数值来决定是否更新某一个字段
insert: 通过判断参数值来决定是否插入某个字段的值。
<select id="getUsers" parameterType="int" resultType="User">
SELECT id, name, phone, email FROM users WHERE 1=1
<if test="_parameter != null">
and id > #{_parameter}
</if>
</select>