Untitled

 avatar
unknown
plain_text
a year ago
195 B
5
Indexable
<select id="findActiveBlogWithTitleLike"
     resultType="Blog">
  SELECT * FROM BLOG
  WHERE state = ‘ACTIVE’
  <if test="title != null">
    AND title like #{title}
  </if>
</select>
Editor is loading...
Leave a Comment