【MyBatis笔记】5、两种取值符号以及ParameterType(输入参数)为简单、对象类型

输入参数:parameterType

1.类型为简单类型(8个基本类型+String)

#{}、${}的区别


#{任意值}
${value} ,其中的标识符只能是value

#{}自动给String类型加上'' "(自动类型转换)

  ${} 原样输出,但是适合于动态排序(动态字段)

select stuno,stuname,stuage  from student where stuname = #{value}

select stuno,stuname,stuage  from student where stuname = '${value}'

动态排序:
select stuno,stuname,stuage  from student  order by ${value} asc

#{}可以防止SQL注入
  ${}不防止

${}、#{}相同之处:

①都可以获取对象的值 (嵌套类型对象)

i.获取对象值:
模糊查询,方式一:
select stuno,stuname,stuage  from student where stuage= #{stuAge}  or stuname like #{stuName} 
            Student student = new Student();
             student.setStuAge(24);
             student.setStuName("%w%");
             List<Student> students = studentMapper.queryStudentBystuageOrstuName(student) ;//接口的方法->SQL
             
模糊查询,方式二:
    student.setStuName("w");
    select stuno,stuname,stuage  from student where stuage= #{stuAge}  or stuname like '%${stuName}%'

ii.嵌套类型对象

猜你喜欢

转载自blog.csdn.net/kuaileky/article/details/89786851