我想使用仅当变量不为空且大于零时才执行的动态 sql 语句。像这样:
<isNotNull prepend="AND" property="ProprietaryId">
<isGreaterThan prepend="AND" property="ProprietaryId" compareValue="0">
G.PROPRIETARY_ID = #ProprietaryId#
</isGreaterThan>
</isNotNull>
但没有前置两个'AND'。
我已阅读文档,但没有找到好的示例。