mybatis学习笔记1

2022/3/9 23:20:07

本文主要是介绍mybatis学习笔记1,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

mybatis更新操作:https://blog.csdn.net/zongf0504/article/details/100103927

提醒:<set>会自动删除末尾的逗号

mybatis查询操作:

方式1:

select * from student  where 1=1 <if test="name!=null"> and name=#{name}</if>

方式2:

select * from student

<where>

    <if test="name!=null">

        and name=#{name}

    </if>

</where>

提醒<where>会自动删除开始的and

#和$的区别:http://www.mybatis.cn/archives/70.html    ,https://blog.csdn.net/zhangyong01245/article/details/90768156

#{}在预编译阶段会转化为占位符?

${}直接变量替换,${}容易引发SQL注入,存在安全隐患

提一个$()的使用场景:${}可以进行参数运算

select * from student order by create_time desc limit  ${(startPage-1)*pageSize},#{pageSize}

 



这篇关于mybatis学习笔记1的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程