如何使用if语句比较mybatis 3中的字符串 - 动态sql

发布于 2025-01-05 22:15:52 字数 445 浏览 0 评论 0原文

在myBatis 3中使用动态sql时如何比较字符串?

以前使用 iBatis,您可以执行以下操作:

        <isEqual property="sortBy" compareValue="portfolio_id">order by p.portfolio_id</isEqual>

现在使用 myBatis,您可以执行以下操作:

        <if test="sortBy.equals('facility_id')">
          order by pd.facility_id
        </if>

sortBy 是参数映射中的一个属性,“facility_id”是值,

我有点困惑,因为它在 ibatis 中是直接的。

In myBatis 3 how do you compare a string when using dynamic sql?

With iBatis previously you could do the following:

        <isEqual property="sortBy" compareValue="portfolio_id">order by p.portfolio_id</isEqual>

Now with myBatis can you do the following:

        <if test="sortBy.equals('facility_id')">
          order by pd.facility_id
        </if>

sortBy is a property in the parameter map and "facility_id" is the value

I'm a little bit confused as it was straight forward in ibatis.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

2025-01-12 22:15:52

你所要做的就是

<if test="sortBy == 'facility_id' ">
    order by pd.facility_id
</if>

All you have to do is

<if test="sortBy == 'facility_id' ">
    order by pd.facility_id
</if>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文