Oracle sql大于和小于号的转义写法

mybatis 中 SQL 写在mapper.xml文件中,而xml解析 < 、>、<=、>= 时会出错,这时应该使用转义写法。

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

猜你喜欢

转载自blog.csdn.net/m1195900241/article/details/125271934