- CDATA 섹션에 의해 포함된 문자에 태그(>,<)가 없음을 파서에 알릴 수 있다.
<select id="listPage" resultType="BoardVO">
<![CDATA[
select
bno, title, content, writer, regdate, viewcnt
from
tbl_board
where bno > 0
order by bno desc, regdate desc
limit #{page}, 10
]]>
</select>