举报投诉联系我们 手机版 热门标签 编程学
您的位置:编程学 > MyBatis 3 动态SQL-script

MyBatis 3 动态SQL-script

2023-05-02 08:18 MyBatis3手册

 MyBatis 3 动态SQL-script

script

要在带注解的映射器接口类中使用动态 SQL,可以使用 ​script ​元素。比如:

    @Update({"<script>",
      "update Author",
      "  <set>",
      "    <if test="username != null">username=#{username},</if>",
      "    <if test="password != null">password=#{password},</if>",
      "    <if test="email != null">email=#{email},</if>",
      "    <if test="bio != null">bio=#{bio}</if>",
      "  </set>",
      "where id=#{id}",
      "</script>"})
    void updateAuthorValues(Author author);


阅读全文
以上是编程学为你收集整理的 MyBatis 3 动态SQL-script全部内容。
声明:本站所有文章资源内容,如无特殊说明或标注,均为采集网络资源。如若本站内容侵犯了原著者的合法权益,可联系本站删除。
相关文章
© 2024 编程学 bianchengxue.com 版权所有 联系我们
桂ICP备19012293号-7 返回底部