mybatis中crud操作范例
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd"> <!--提供基本版,依据业务情况,酌情添加-->
<!--author XiJun.Gong--> <mapper namespace="com.qunar.qexam2.course.dao.CourseDao"> <insert id="insertCourse" parameterType="com.qunar.qexam2.course.model.CourseDomain"
useGeneratedKeys="true" keyProperty="id">
INSERT INTO
course
(
classification_id,
course_name,
create_time,
create_user,
update_time,
update_user,
is_delete
)
VALUES
(
#{classificationId},
#{name},
#{createTime},
#{creatorTalkId},
#{modifyTime},
#{menderTalkId},
#{isDelete}
)
</insert>
<!--批量插入数据-->
<insert id="insertCourseBatch" parameterType="com.qunar.qexam2.course.model.CourseDomain">
INSERT INTO
course
(
classification_id ,
course_name ,
create_time ,
create_user,
update_time,
update_user,
is_delete
)
VALUES
<foreach collection="list" item="item" index="index" separator=",">
(
#{item.classificationId},
#{item.name} ,
#{item.createTime} ,
#{item.creatorTalkId},
#{item.modifyTime},
#{item.menderTalkId},
#{item.isDelete}
)
</foreach> </insert> <!--物理删除-->
<delete id="deleteCourse"> DELETE course1 , question1
FROM course course1
JOIN question question1
ON course1.id = question1.course_id
AND question1.use_count = 0 WHERE
course1.id = #{CourseId}; </delete> <update id="updateCourse" parameterType="com.qunar.qexam2.course.model.CourseDomain"> UPDATE course
<set> <if test="classificationId != null and classificationId !='' ">
course.classification_id = #{classificationId} ,
</if> <if test=" name != null and name != '' ">
course.course_name = #{name} ,
</if> <if test="createTime != null and createTime !='' ">
course.create_time = #{createTime} ,
</if> <if test="creatorTalkId != null and creatorTalkId!='' ">
course.create_user = #{creatorTalkId} ,
</if> <if test="modifyTime != null and modifyTime != '' ">
course.update_time = #{modifyTime} ,
</if> <if test="menderTalkId != null and menderTalkId !='' ">
course.update_user = #{menderTalkId} ,
</if> <if test="isDelete != null and isDelete != '' ">
course.is_delete = #{isDelete}
</if> </set>
WHERE course.id =#{id} </update> <!--逻辑删除-->
<update id="updateCourseStatus">
UPDATE course AS course1
JOIN question AS question1
ON course1.id = question1.course_id
AND question1.use_count = 0
SET
course1.is_delete = 1,
question1.is_delete = 1
WHERE
course1.id = #{CourseId} </update> <!--分类逻辑删除-->
<!--逻辑删除-->
<update id="updateBatchCourseStatus"> UPDATE course As course1
JOIN question As question1
ON
course1.id = question1.course_id
AND question1.use_count = 0
SET course1.is_delete = 1,
question1.is_delete = 1
WHERE
course.classification_id = #{classificationId}
</update> <!--逻辑添加-->
<update id="updateCourseOnline">
UPDATE course
SET course.is_delete = 0
WHERE
course.id = #{CourseId}
</update> <select id="selectCourses" resultType="com.qunar.qexam2.course.model.CourseDomain"> SELECT
course.id as id ,
course.classification_id as classificationId ,
course.course_name as name ,
course.create_time as createTime ,
course.create_user as creatorTalkId ,
course.update_time as modifyTime ,
course.update_user as menderTalkId ,
course.is_delete as isDelete FROM course <where> <if test="classificationId != null and classificationId != '' ">
AND
course.classification_id = #{classificationId}
</if>
<if test="isDelete != null and isDelete != '' ">
AND
course.is_delete = #{isDelete}
</if> </where>
order by course.create_time desc
</select> <select id="selectCourseVoAll" resultType="com.qunar.qexam2.course.vo.CourseVo">
SELECT
course.id AS id,
course.course_name AS name
FROM course
WHERE
course.is_delete = 0
ORDER BY course.create_time DESC
</select> <select id="CountCourses" resultType="com.qunar.qexam2.course.model.CourseDomain">
SELECT COUNT(*)
FROM course
<where>
<if test="classificationId != null and classificationId != '' ">
AND
course.classification_id = #{classificationId}
</if>
AND
course.is_delete = 0
</where>
</select> <!--统计未进行逻辑删除的课程-->
<select id="CountCoursesByCourseId" resultType="java.lang.Integer">
SELECT count(*)
FROM course
WHERE course.is_delete = 0
</select> <!--统计多个分类下的课程数目-->
<select id="CountCoursesByCategoryId" resultType="Integer">
SELECT COUNT(*)
FROM course
WHERE
course.is_delete = 0
AND course.classification_id IN
<foreach item="classificationId" index="index" collection="classificationIdList"
open="(" separator="," close=")">
#{classificationId}
</foreach>
</select> <select id="selectCourseByName" resultType="com.qunar.qexam2.course.model.CourseDomain"> SELECT
course.id as id ,
course.classification_id as classificationId ,
course.course_name as name ,
course.create_time as createTime ,
course.create_user as creatorTalkId ,
course.update_time as modifyTime ,
course.update_user as menderTalkId ,
course.is_delete as isDelete FROM course
<where>
<if test="CourseName != null and CourseName != '' ">
AND
course.course_name like #{CourseName}
</if>
<if test="isDelete != null and isDelete != '' ">
AND
course.is_delete = #{isDelete}
</if>
</where> order by course.create_time desc
</select> <select id="selectCourse" resultType="com.qunar.qexam2.course.model.CourseDomain"> SELECT
course.id as id ,
course.classification_id as classificationId ,
course.course_name as name ,
course.create_time as createTime ,
course.create_user as creatorTalkId ,
course.update_time as modifyTime ,
course.update_user as menderTalkId ,
course.is_delete as isDelete FROM course
<where>
<if test="CourseId != null and CourseId != '' ">
AND
course.id = #{CourseId}
</if>
<if test="isDelete != null and isDelete !='' ">
AND
course.is_delete = #{isDelete}
</if>
</where>
order by course.create_time desc
</select> <select id="selectCourseWithoutLimit"
resultType="com.qunar.qexam2.course.model.CourseDomain"> SELECT
course.id AS id,
course.classification_id AS classificationId,
course.course_name AS name,
course.create_time AS createTime,
course.create_user AS creatorTalkId,
course.update_time AS modifyTime,
course.update_user AS menderTalkId,
course.is_delete AS isDelete
FROM course WHERE course.is_delete = 0
ORDER BY course.create_time DESC
</select> <select id="selectCourseByAuthor" resultType="com.qunar.qexam2.course.model.CourseDomain"> SELECT
course.id as id ,
course.classification_id as classificationId ,
course.course_name as name ,
course.create_time as createTime ,
course.create_user as creatorTalkId ,
course.update_time as modifyTime ,
course.update_user as menderTalkId ,
course.is_delete as isDelete FROM course
<where>
<if test="creatorTalkId != null and creatorTalkId != '' ">
AND
course.create_user = #{creatorTalkId}
</if> <if test="isDelete != null and isDelete != '' ">
AND
course.is_delete = #{isDelete}
</if>
</where>
order by course.create_time desc
</select> <select id="selectClassificationName" resultType="java.lang.String">
SELECT classification.tag_name
FROM course
LEFT JOIN classification
ON course.classification_id = classification.id
<where>
<if test="courseId != null and courseId !='' ">
AND
course.id = courseId
</if>
</where>
</select> <select id="queryCourseVoByCategoryId" resultType="com.qunar.qexam2.course.vo.CourseVo">
SELECT
course.id AS id ,
course.course_name AS name,
FROM course
<where>
<if test="classificationId != null and classificationId != '' ">
AND
course.classification_id = #{classificationId}
</if>
</where>
</select> <!--依照分类来返回课程列表信息-->
<select id="queryCourseInfVoByCategoryId" resultType="com.qunar.qexam2.course.vo.CourseInfoVo"> SELECT
course.id AS id ,
course.course_name AS courseName,
course.create_user AS createUser,
course.create_time As createTime
FROM course <where>
<if test="classificationId != null and classificationId != '' ">
AND
course.classification_id = #{classificationId}
</if>
</where> </select> <!--依照分类来返回课程列表信息-->
<select id="queryCourseInfVoByCategoryIdList" resultType="com.qunar.qexam2.course.vo.CourseInfoVo">
SELECT
course.id AS id ,
course.course_name AS courseName,
course.create_user AS createUser,
course.create_time As createTime
FROM course
WHERE course.classification_id IN
<foreach item="classificationId" index="index" collection="classificationIdList"
open="(" separator="," close=")">
#{classificationId}
</foreach>
</select> <!--
<!–给予课程Id查询课程所属的一二级部门部门–>
<select id="queryCourseAffiliation" resultType="com.qunar.qexam2.course.vo.CourseAffiliation"> SELECT
course1.course_name AS courseName ,
category1.tag_name As firstDepart ,
category2.tag_name AS secondDepart FROM
course course1 JOIN classification category2 ON
category2.id = course1.classification_id JOIN classification category1 ON
category1.id = category2.parent_id WHERE course1.id = #{courseId} </select>
--> <!--依照分类来返回课程列表信息-->
<select id="queryCategoryIdByCourseId" resultType="java.lang.Integer">
SELECT
course.classification_id AS classificationId
FROM course
WHERE course.id IN
<foreach item="courseId" index="index" collection="courseIdList"
open="(" separator="," close=")">
#{courseId}
</foreach>
</select> <!--依照分类Id来返回课程Id列表信息-->
<select id="queryCourseIdByCategoryId" resultType="java.lang.Integer">
SELECT
course.id
FROM course
WHERE course.classification_id IN
<foreach item="classificationId" index="index" collection="categoryIdList"
open="(" separator="," close=")">
#{classificationId}
</foreach>
</select> </mapper>
mybatis中crud操作范例的更多相关文章
- 【MyBatis】MyBatis实现CRUD操作
1.实现基本CRUD功能 使用MyBatis对数据完整的操作,也就是CRUD功能的实现.根据之前的内容,要想实现CRUD,只需要进行映射文件的配置. 范例:修改EmpMapper.xml文件,实现CR ...
- 05 Mybatis的CRUD操作和Mybatis连接池
1.CRUD的含义 CRUD是指在做计算处理时的增加(Create).读取(Retrieve)(重新得到数据).更新(Update)和删除(Delete)几个单词的首字母简写.主要被用在描述软件系统中 ...
- 【mybatis】mybatis中insert操作,返回自增id
需求是这样的: mybatis中insert操作,返回自增id,因为这个自增id需要给后续业务用到. 原本是这样的: 将insert语句传入,正常执行insert操作,返回int永远是 0[失败] 或 ...
- MVC3和MVC4中CRUD操作
MVC3中EF实现的CRUD操作 public class HomeController : Controller { // // GET: /Home/ CarModelContainer db = ...
- MyBatis学习01(初识MyBatis和CRUD操作实现)
1.初识MyBatis 环境说明: jdk 8 + MySQL 5.7.19 maven-3.6.1 IDEA 学习前需要掌握: JDBC MySQL Java 基础 Maven Junit 什么是M ...
- Mybatis:CRUD操作
提示: Mapper配置文件的命名空间为对应接口包名+接口名字,这个经常会忘记和搞错的!! select标签 在接口中编写三个查询方法 //获取全部用户List<User> selectU ...
- MyBatis的CRUD操作
MyBatis的两个主要配置文件 mytatis.xml:放在src目录下,常见的配置如下 <?xml version="1.0" encoding="UTF-8& ...
- Spring boot 入门四:spring boot 整合mybatis 实现CRUD操作
开发环境延续上一节的开发环境这里不再做介绍 添加mybatis依赖 <dependency> <groupId>org.mybatis.spring.boot</grou ...
- java之mybatis之使用mybatis实现crud操作
目录结构: 1.封装 mybatis 的工具类: MybatisUtil.java public class MybatisUtil { private static SqlSessionFactor ...
随机推荐
- qt qml qchart 图表组件
qt qml qchart 图表组件 * Author: Julien Wintz * Created: Thu Feb 13 23:41:59 2014 (+0100) 这玩意是从chart.js迁 ...
- javax mail网址
http://www.oracle.com/technetwork/java/javamail/faq/index.html#tomcatconfig
- 基于webrtc的资源释放问题(二)
基于webrtc的资源释放问题(二) ——建立连接的过程中意外中断 应用背景: 我们在打电话的时候会不会遇到这种情况?打电话的时候未接通之前挂掉了电话,或者在接通之后建立的连接的过程中挂掉电话? 特别 ...
- ABAP代码编辑器设置--界线
ABAP编辑器每行允许的最大字符数: Utilities->Settings打开选项卡: 勾选:Downward-Compat.line Length(72) 设置后看到的效果: 设置步骤:
- 【前端】screenX/Y, clientX/Y, pageX/Y 的区别
一图胜千言. 做了一个图:
- Python,Jupyter Notebook,IPython快速安装教程
0.安装环境 Windows10,Python3.5.1,IPython,jupyter notebook,and other functionality 官方安装文档Linux版3.x 官方安装文档 ...
- Activty四种启动模式
Activty启动提供了四种启动模式.launchMode: standard:每次启动新的活动窗口(new操作) singleTop:如果在栈顶是目标活动,则直接打开.否则开启新的活动窗口(new) ...
- boost学习笔记(七)---date_time库
date_time库的日期基于格里高利历,支持从1400-01-01到9999-12-31之间的日期计算 #define BOOST_DATE_TIME_SOURCE #include <boo ...
- DP4J -- mnist
标签(空格分隔): DeepLearning mnist mnist是一个数据集,其中包含很多手写数字的图片,每张图片都已经打上了label: Deep Learning 传统的机器学习神经网络由一层 ...
- A python script to check NE syncfail and get log from CIPS
#! /usr/bin/env python # -*- coding: UTF-8 -*- """The script is to check whether NE i ...