Escape writing of Oracle sql greater than and less than signs

SQL in mybatis is written in the mapper.xml file, and errors will occur when xml parses <, >, <=, >=, and escape writing should be used at this time.

< <= > >= & ' "
&lt; &lt;= &gt; &gt;= &amp; &apos; &quot;

Guess you like

Origin blog.csdn.net/m1195900241/article/details/125271934
Recommended