mybatis之map.xml文件的解读














   


   
       
       
       
   


   
      id, username, password
   


   


   
    delete from user
    where id = #{id,jdbcType=VARCHAR}
   


   
    insert into user (id, username, password
      )
    values (#{id,jdbcType=VARCHAR}, #{username,jdbcType=VARCHAR}, #{password,jdbcType=VARCHAR}
      )
   


   
        insert into user
       
           
                id,
           

           
                username,
           

           
                password,
           

       

       
           
                #{id,jdbcType=VARCHAR},
           

           
                #{username,jdbcType=VARCHAR},
           

           
                #{password,jdbcType=VARCHAR},
           

       

   


   
        update user
       
           
                username = #{username,jdbcType=VARCHAR},
           

           
                password = #{password,jdbcType=VARCHAR},
           

       

        where id = #{id,jdbcType=VARCHAR}
   


   
    update user
    set username = #{username,jdbcType=VARCHAR},
      password = #{password,jdbcType=VARCHAR}
    where id = #{id,jdbcType=VARCHAR}
 








你可能感兴趣的:(数据库)