在 MyBatis 中,可以使用 <if>
標簽來處理空值參數。在 SQL 語句中,可以使用條件判斷來判斷參數是否為空,然后進行相應的處理。例如:
<select id="getUserList" resultType="User">
SELECT * FROM user
<where>
<if test="username != null and username != ''">
AND username = #{username}
</if>
<if test="email != null and email != ''">
AND email = #{email}
</if>
</where>
</select>
在上面的例子中,使用了 <if>
標簽來判斷 username
和 email
參數是否為空,如果不為空則將條件拼接到 SQL 語句中。這樣可以動態地根據參數來構建不同的 SQL 查詢語句。