Untitled
Anonymous
plain_text
06/12/2024 7:01 AM
260 B
21
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