Mybatis中case when 配合 trim的使用方法

Mybatis中case when 配合 trim的使用方法

  • Mybatis中trim标签的使用
  • case when的使用方法
  • demo(批量更新数据)

Mybatis中trim标签的使用

  • 1、作用:一般用于去除sql语句中多余的and关键字、逗号、或者给sql语句前拼接where、set以及values等前缀或后缀
  • 2、属性:
属性 描述
prefix 给sql语句拼接的前缀
suffix 给sql语句拼接的后缀
prefixOverrides 去除sql语句前面的关键字或者字符,该关键字或者字符由prefixOverrides属性指定,假设该属性指定为"AND",当sql语句的开头为"AND",trim标签将会去除该"AND"
suffixOverrides 去除sql语句后面的关键字或者字符,该关键字或者字符由suffixOverrides属性指定

case when的使用方法

  • 1、简单函数:
    CASE expression
        WHEN condition1 THEN result1
        WHEN condition2 THEN result2
        ...
        ELSE result
    END
  • 2、搜索函数
    CASE 
        WHEN condition1 THEN result1
        WHEN condition2 THEN result2
        ...
    ELSE result
    END

总结: CASE 表示函数开始,END 表示函数结束。如果 condition1 成立,则返回 result1, 如果 condition2 成立,则返回result2,当全部不成立则返回else后面的 result,而当有一个成立之后,后面的就不执行了。


demo(批量更新数据)

(批量更新t_cusomer表中的数据,前提批量数据以放入集合中)


update t_customer

       
       
        when #{cus.id} then #{cus.age}
        
    
        
        
            
                
                    when id=#{cus.id} then #{cus.name}
                
            
        
        
    
    

两种不同写法的语句,实际输出代码:

1)set c_age=case id when #{cus.id} then {cus.age} end

2)set c_name=case when id=#{cus.id} then #{cus.name} end

你可能感兴趣的:(Mybatis,java,mybatis)