动态sql
sql和include
在我们写sql语句时,我们发现,映射文件中有部分代码的重复效率较高,因此我们可以使用<SQL>
标签将重复代码抽取出来,当使用时,之基引用即可。
<!-- sql片段 -->
<sql id="user_fields">
u.id id,
u.username,
u.`password`,
u.birthday,
u.phone,
u.address
</sql>
<select id="findUserById" resultType="User" parameterType="int">
select
<!-- 引用sql片段 -->
<include refid="user_fields"/>
from user u where u.id = #{id}
</select>
if和where【判断】
场景:模糊查询时,当没有传入关键词时,SQL语句就不再拼接。
UserMapper接口
/**
* 更新用户信息
*/
List<User> findUserByKeyword(String keyword);
UserMapper.xml文件
<!-- 模糊查询测试 -->
<select id="findUserByKeyword" parameterType="String" resultType="User">
select * from user
<!--
当下方if中判断成立,此处会自动拼接where关键词,以及if内的内容
当下方if中判断失败,则不拼接任何东西,包括where关键词
-->
<where>
<if test="keyword != null and keyword != ''">
username like concat('%',#{keyword},'%')
</if>
</where>
</select>
注意:在sql语句中,我们不再拼写
where
关键字,因为<where>
标签就相当于给我们自动拼接了where关键字
测试单元
@Test
public void findByKeyword() throws IOException {
String resource = "mybatis-config.xml";
InputStream inputStream = Resources.getResourceAsStream(resource);
SqlSessionFactory sqlSessionFactory = new SqlSessionFactoryBuilder().build(inputStream);
SqlSession sqlSession = sqlSessionFactory.openSession( );
UserMapper mapper = sqlSession.getMapper(UserMapper.class);
List<User> list = mapper.findUserByKeyword("a");
System.out.println(list );
}
foreach【循环遍历】
使用场景:批量
的操作数据。如:查询id为1,2,3的用户。
基本的sql语句:
select * from user where id in(1,2,3);
UserMapper接口
List<User> findUserByList(List<Integer> ids);
UserMapper.xml文件
<select id="findUserByList" parameterType="List" resultType="User">
select * from user where id in
<!--
foreach 开始遍历
collection 要遍历的集合,此处不是接口中参数名,必须是list
item 遍历的得到到变量
open 拼接左括号(
close 拼接右括号 )
separator 拼接变量间分隔符
-->
<foreach collection="list" item="id" open="(" close=")" separator=",">
#{id}
</foreach>
</select>
注意:标签内
collection是要遍历的集合
,此处不是接口中参数名,必须是list
测试单元
@Test
public void findByKeyword() throws IOException {
String resource = "mybatis-config.xml";
InputStream inputStream = Resources.getResourceAsStream(resource);
SqlSessionFactory sqlSessionFactory = new SqlSessionFactoryBuilder().build(inputStream);
SqlSession sqlSession = sqlSessionFactory.openSession( );
UserMapper mapper = sqlSession.getMapper(UserMapper.class);
ArrayList<Integer> ids = new ArrayList<Integer>( );
ids.add(1);
ids.add(2);
ids.add(3);
List<User> list = mapper.findUserByList(ids);
for (User user : list) {
System.out.println(user );
}
}
set+if / trim+if【更新】
set+if
UserMapper接口
/**
* 更新用户信息
*/
int updateUserById(User user);
UserMapper.xml文件
<update id="updateUserById" parameterType="User">
update user
<!-- set标签会出现set关键字
会将最后一个字段的,去掉
-->
<set>
<if test="username != null">
username = #{username},
</if>
<if test="password != null">
password = #{password},
</if>
<if test="phone != null">
phone = #{phone},
</if>
</set>
where id = #{id}
</update>
<set>标签会自动拼接set关键字,并且会自动去掉最后一个字段的 ','
trim+if
<update id="updateUserById" parameterType="User">
update user
<!--
trim : 滤空
prefix 在if语句前拼接set
suffixOverrides 如果是最后一个字段 将,逗号掩盖
-->
<trim prefix="set" suffixOverrides=",">
<if test="username != null">
username = #{username},
</if>
<if test="password != null">
password = #{password},
</if>
<if test="phone != null">
phone = #{phone},
</if>
</trim>
where id = #{id}
</update>