IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 大数据 -> mybatis动态sql的标签 -> 正文阅读

[大数据]mybatis动态sql的标签

已知有resultMap:

<resultMap type="com.briup.oneToMany.Course" id="coursesResult">
		<id property="courseId" column="course_id"/>
		<result property="name" column="name"/>
		<result property="description" column="description"/>
		<result property="startDate" column="start_date"/>
		<result property="endDate" column="end_date"/>
</resultMap>

1、<if>

if标签中嵌套了sql语句,如果满足条件就执行,否则不执行标签内的sql语句,例如:根据教师Id(必须存在)查找信息,可选选项是课程名称、开始时间和结束时间。

<select id="searchCourses" parameterType="map" resultMap="coursesResult">
	select *
	from courses
	where tutor_id=#{tutorId}
	<if	test="name != null">
		and name like #{name}
	</if>
	<if	test="startDate != null">
		and start_date <![CDATA[>=]]> #{startDate}
	</if>
	<if	test="endDate != null">
		and end_date <![CDATA[<=]]> #{endDate}
	</if>
</select>

测试代码:

map.put("tutorId", 1);
map.put("name", "%My%");

2、<choose>

choose标签是根据类别来进行查询的,当满足when标签里面的test属性时,才会去执行when标签里面的sql语句,如果都不满足,则会执行otherwise标签里的sql语句。

<select id="searchCourses" parameterType="map" resultMap="coursesResult">
	select *
	from courses
	<choose>
		<when test="searchBy == 'Tutor'">
			where tutor_id = #{tutorId}
		</when>
		<when test="sreachBy == 'courseName'">
			where name like #{courseName}
		</when>
		<otherwise>
			where start_date <![CDATA[>=]]> sysdate
		</otherwise>
	</choose>
</select>

测试代码:

map.put("sreachBy", "Tutor");
map.put("tutorId", 1);
map.put("sreachBy", "courseName");
map.put("courseName", "%My%");

3、<where>

where标签表示所有的查询条件都是可选的,在需要使用至少一种查询条件的情况下,可以直接使用where子句,如果有多个条件,可以添加and或者or。

<select id="searchCourses" parameterType="map" resultMap="coursesResult">
	select *
	from courses
	<where>
		<if test="tutorId != null">
			tutor_id = #{tutorId}
		</if>
		<if test="courseName != null">
			and name like #{courseName}
		</if>
	</where>
</select>

测试代码:

map.put("tutorId", 1);
map.put("courseName", "%Java%");

4、<foreach>

foreach标签是用来迭代遍历一个数组或者集合的

第一种使用or的情况:

<select id="searchCourses" parameterType="map" resultMap="coursesResult">
	select *
	from courses
	<if test="tutorIds != null">
		<where>
			<foreach collection="tutorIds" item="tutorId">
				or tutor_id = #{tutorId}
			</foreach>
		</where>
	</if>			
</select>

第二种使用in的情况:

<select id="searchCourses" parameterType="map" resultMap="coursesResult">
	select *
	from courses
	<if test="tutorIds != null">
		<where>
		tutor_id in
			<foreach collection="tutorIds" item="tutorId" open="(" close=")" separator=",">
				 #{tutorId}
			</foreach>
		</where>
	</if>			
</select>

测试代码:

List<Integer> tutorIds = new ArrayList<Integer>();
tutorIds.add(1);
tutorIds.add(2);
map.put("tutorIds", tutorIds);

5、<trim>

trim和where类似,trim提供了添加 前缀/后缀 或者 移除 前缀/后缀

<select id="searchCourses" parameterType="map" resultMap="coursesResult">
	select *
	from courses
	<trim prefix="where" prefixOverrides="and">
		<if test="tutorId != null">
			and tutor_id = #{tutorId}
		</if>
		<if test="courseName != null">
			and name like #{courseName}
		</if>
	</trim>
			
</select>

测试代码:

map.put("tutorId", 1);
map.put("courseName", "%Java%");

6、<set>

set标签只是针对update更新语句使用的。

<set>
    <if test="name != null">name=#{name}</if>
    <if test="email != null">email=#{email}</if>
    <if test="phone != null">phone=#{phone}</if>
</set>
  大数据 最新文章
实现Kafka至少消费一次
亚马逊云科技:还在苦于ETL?Zero ETL的时代
初探MapReduce
【SpringBoot框架篇】32.基于注解+redis实现
Elasticsearch:如何减少 Elasticsearch 集
Go redis操作
Redis面试题
专题五 Redis高并发场景
基于GBase8s和Calcite的多数据源查询
Redis——底层数据结构原理
上一篇文章      下一篇文章      查看所有文章
加:2021-11-11 12:46:40  更:2021-11-11 12:49:09 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/24 6:06:18-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码