1. 在mybatis 中使用模糊查找
nickName like concat('%',#{nickName},'%')
2. 插入一个对象后返回他的id
<!--需传入一个对象-->
<insert id="insertCommonUser" useGeneratedKeys="true" keyProperty="id" >
insert ignore into t_user
(
mobile,
password,
register_time,
last_login_time
)
values
(
#{mobile},
#{password},
NOW(),
NOW()
)
</insert>