mybatis的动态SQL常用标签详解


test
test="type='Y'"


       
   
        AND    sal = #{sal}
   
    
                AND    add = #{add}
        
   
        AND    age is not null;
   


 
 
    and a = 1
    and b = 'a'
后面的第一个and是可以自动处理的

   
         and name
    
该用法和一样的 ,trim可以用于 update 多个字段时

    role_name = #{roleName}



index 下标    item 每个元素名称    open 开始    close=结束    separator    分割

collection:  array  |   list    


    
    





select * from  where name like #{pattern}

通常用于拼接模糊查询的条件

你可能感兴趣的:(MyBatis)