我是靠谱客的博主 干净帅哥,最近开发中收集的这篇文章主要介绍MyBatis Generator生成的CRUD操作中,insertSelective和insert的区别?,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

项目需要需要使用MyBatis Generator,generator可生成以下几种的CURD操作。

1.insert()

2.insertSelective()

3.updateByPrimaryKeySelective()

4.updateByPrimaryKey()

5.selectByPrimaryKey()

6.deleteByPrimaryKey()


其中 insertSelective和insert的区别?

1、selective的意思是:选择性
2、insertSelective--选择性保存数据;
比如User里面有四个字段:id,name,age,password
但是我只设置了一个字段;
User u=new user();
u.setName("张三");
insertSelective(u);


3、insertSelective执行对应的sql语句的时候,只插入对应的name字段;(主键是自动添加的,默认插入为空)
insert into tb_user (id,name) value (null,"张三");


4、而insert则是不论你设置多少个字段,统一都要添加一遍,不论你设置几个字段,即使是一个。
User u=new user();
u.setName("张三");
insertSelective(u);

insert into tb_user (id,name,age,password) value (null,"张三",null,null);

 

其他的也是类似的意思。

最后

以上就是干净帅哥为你收集整理的MyBatis Generator生成的CRUD操作中,insertSelective和insert的区别?的全部内容,希望文章能够帮你解决MyBatis Generator生成的CRUD操作中,insertSelective和insert的区别?所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(55)

评论列表共有 0 条评论

立即
投稿
返回
顶部