数据库算法
双子针、动态规划、二分查找、贪心算法、深度优先搜索、字符串、递归、字典树、排序、链表等
元素 作用 描述
if 条件判断 单条件判断
choose(when,otherwise) 条件选择,相当于java中的switch 多条件分支判断
( set,where) 辅助(条件) 处理sql语句拼接问题
foreach 循环(批量插入,修改) 循环(批量使用)
if标签是与(and)的关系,而 choose 是或(or)的关系。
choose标签是按顺序判断其内部when标签中的test条件出否成立,如果有一个成立,则 choose 结束
mybatis的trim标签一般用于去除sql语句中多余的 and关键字,逗号,或者给sql语句前拼接 “where“、“set“以及“values(“ 等前缀,或者添加“)“等后缀,可用于选择性插入、更新、删除或者条件查询等操作。
trim: 1(去除: and关键字,逗号 ) 2(添加: “where“、“set“、“values(“ 、“)“)
choose(when,otherwise)
需求 :查询用户信息
1 如果输入了用户名,根据用户名进行模糊查找,返回
2 如果输入了年龄,根据用户名进行模糊查找,返回
3 如果输入了地址,根据用户名进行模糊查找,返回
每次只匹配一个条件 ,满足一种条件就返回
以下是trim标签中涉及到的属性:
属性 描述
prefix 给sql语句拼接的前缀
suffix 给sql语句拼接的后缀
prefixOverrides 去除sql语句前面的关键字或者字符,该关键字或者字符由prefixOverrides属性指定,假设该属性指定为"AND",当sql语句的开头为"AND",trim标签将会去除该"AND"
suffixOverrides 去除sql语句后面的关键字或者字符,该关键字或者字符由suffixOverrides属性指定
下面使用几个例子来说明trim标签的使用。
if标签-单条件判断
<!--如果姓名不为空 则安姓名查找 如果姓名为空则按邮箱查找 否则查询全部-->
<select id="findConditon" resultType="com.wx.entity.User">
select * from tbl_user02
<where>
<if test="name!=null and name!=''">
and name = #{name}
</if>
<if test="email!=null and email!=''">
and email = #{email}
</if>
</where>
</select>
where标签的两个特性:
第一,只有if标签有内容的情况下才会插入where子句;
第二,若子句的开通为 “AND” 或 “OR”,where标签会将它替换去除
建议将所有条件都添加上and或or;
————————————————
choose标签 多条件分支判断 choose 元素,它有点像 Java 中的 switch 语句。
<select id="findUserByCondition" parameterType="map" resultType="User">
SELECT * FROM users
WHERE 1=1
<choose>
<!-- 年龄条件 -->
<when test="age != null">
AND age = #{age}
</when>
<!-- 职业条件 -->
<when test="job != null">
AND job = #{job}
</when>
<!-- 默认条件 -->
<otherwise>
AND status = 'active'
</otherwise>
</choose>
</select>
如果传入的参数中包含 age,则会添加 AND age = #{age} 到 SQL 语句中;如果不包含 age 但包含 job,则会添加 AND job = #{job};如果两者都不包含,则会默认添加 AND status = ‘active’
select * from t_user where 1=1 and username = 'Tom' and email = '1001'; 例子2
———————————————
trim标签
上面使用where标签可以达到拼接条件语句时,自动去掉首个条件的and或or,那么如果是其他自定义的关键字是否也能去掉呢?
此时,where标签就无能为力了,该trim标签上场了,它也可以实现where标签的功能。
<select id="selectSelective" resultType="com.secbro.entity.User">
select * from t_user
<trim prefix="where" prefixOverrides="and | or ">
<if test="username != null and username != ''">
and username = #{username}
</if>
<if test="idNo != null and idNo != ''">
and id_no = #{idNo}
</if>
</trim>
</select>
将上面基于where标签的写改写为trim标签,发现执行效果完全一样。而且trim标签具有了更加灵活的自定义性。
———————————————
set标签
这个标签配合if标签一起用 一般用于修改语句 如果传递的参数为null 那么就不会修改该列的值
//这里注意 test="参数" 这里的参数 是前端传过来的值就是你前端页面上是什么 这里就要写什么
//而下面的name=#{name} 第一个name是你数据库中的字段 #{name}中是你的前端传过来的值
<update id="updateUser" parameterType="User">
update tbl_user02
<set>
<if test="name!=null and name!=''">
name=#{name},
</if>
<if test="pwd!=null">
pwd=#{pwd},
</if>
<if test="email!=null">
email=#{email},
</if>
</set>
where id = #{id}
</update>
————————————————
foreach元素的属性主要有 collection,item,index,separator,open,close。
collection: 表示集合,数据源(list,array,map(map的key时参数名:<foreach collection = "key" item="id" open="id in(" close=")" separator=","> ))
item :表示集合中的每一个元素,集合中每个元素进行迭代时的别名
index :用于表示在迭代过程中,每次迭代到的位置
separator :表示在迭代时数据以什么符号作为分隔符
open :表示该语句以什么开始
close :表示以什么结束
主要有一下3种情况:
1. 如果传入的是单参数且参数类型是一个List的时候,collection属性值为list
2. 如果传入的是单参数且参数类型是一个array数组的时候,collection的属性值为array
3. 如果传入的参数是多个的时候,我们就需要把它们封装成一个Map了
插入数据之后返回一个自增的主键id给你对应实体类中的主键属性
useGeneratedKeys="true" keyProperty="id"
keyproperty=主键,这样就可以解决在主键自增的情况下获取主键
3.4foreach标签
循环标签 适用于批量添加、删除 和查询记录
方法名称
<insert id="batchInsertBlog" parameterType="com.jas.mybatis.bean.Blog" useGeneratedKeys="true" keyProperty="id" >
insert into blog (title, author, views, status) values
<foreach collection="blogList" item="blog" separator=",">
(#{blog.title}, #{blog.author}, #{blog.views}, #{blog.status}) 对象的字段名称
</foreach>
</insert>
mapper接口中这样写:
int batchInsertBlog(@Param("blogList") List<Blog> blogList);
————————————————
<delete id="batchDeleteByIds">
DELETE FROM blog WHERE id in
<foreach collection="ids" item="item" index="index" open="(" separator="," close=")" >
#{item}
</foreach>
</delete>
mapperj接口中这样写:
int batchDeleteByIds(@Param("ids") List<String> ids);
————————————————
例子1
<update id="updateTable">
UPDATE tableName SET
<foreach collection="dataMap" index="key" item="value" separator="," >
${key} = #{value}
</foreach>
WHERE
id = #{id}
</update>
mapper中这样写:
void updateTable(Param("id") String id,
@Param("dataMap") HashMap dataMap);
例子2
<update id="updateBatch" parameterType="java.util.List">
<foreach collection="list" item="item" index="index" open="" close="" separator=";">
update Student
<set>
username=${ item.username}
</set>
where id = ${ item.id}
</foreach>
</update>
mapper中这样写:
Integer addStudentByList(@Param("list") List<Student> list);
————————————————
<select id="getAllBlog" resultType="blog">
SELECT title, author, views, status
FROM blog
<if test="blogList != null and blogList.size() > 0">
WHERE id in
<foreach collection="blogList" item="item" index="index" open="("
separator="," close=")">
#{item}
</foreach>
</if>
</select>
批量查询博客信息:
void getAllBlog(@Param("blogList") List<Long> blogList);
————————————————
sql片段
一般用于查询语句的时候 select * … 这种不推荐 所以用sql片段可以很好的解决这个问题
<select id="selectByName" resultMap="BaseResultMap">
select
<include refid="Base_Column_List" /> 代表 *
from zbcg_product
<where>
<if test='name !=null and name !=""'>
name like concat('%',#{name}, '%')
</if>
</where>
</select>
————————————————
4.mybatis映射文件处理特殊字符.
第一种:转义标签 <
第二种: <![CDATA[sql]]>
<select id="findByMaxAndMin" resultType="com.wx.entity.User">
select * from tbl_user02 where id >#{min} and id < #{max}
</select>
<select id="findByMaxAndMin01" resultType="com.wx.entity.User">
<![CDATA[select * from tbl_user02 where id>#{min} and id<#{max}]]>
</select>
————————————————
5.mybatis完成模糊查询
第一种:使用字符串函数(concat)完成拼接
第二种:使用${}
<select id="findByName" resultType="com.wx.entity.User">
select * from tbl_user02 where name like concat('%',#{name},'%');
</select>
<select id="findByName" resultType="com.wx.entity.User">
select * from tbl_user02 where name like '%${name}%';
</select>
————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————
String sql = "UPDATE 表名 SET 字段1=值1, 字段2=值2, ... WHERE 条件";
insert into 表名[(字段1,字段2...)]values(属性值1,属性值2);
UPDATE 数据表名 SET 字段名=新的字段值 WHERE 条件表达式;
delete from 数据表名 where 条件表达式;
————————————————