结果
<select id="getBySnAndDate" resultType="com.energy.tcpip.domain.PeakdataDO">
select id
from table
<where>
<if test="_parameter != null and _parameter != ''">and sn = #{sn}</if>
</where>
</select>
报错的情况
- 只有一个String参数
- 用了<where <if test标签,没用_parameter
- 没用<if test,也没用 where sn = #{value}