mybatis学习

Posted 寒潭渡鹤影

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mybatis学习相关的知识,希望对你有一定的参考价值。

select元素。

自定义resultMap,自定义返回。

建表语句如下所示:

create table tbl_dept(
id int(11) primary key auto_increment,
dept_name varchar(255)
)

查询

select d.id did,d.dept_name dept_name,
e.id eid,e.last_name last_name,email email,e.gender gender
from tbl_dept d
left join tbl_employee e
on d.id=e.d_id
where d.id=1

 

以上是关于mybatis学习的主要内容,如果未能解决你的问题,请参考以下文章

markdown [mybatis参考]关于mybatis #mybatis的一些片段

Mybatis 学习笔记总结

Mybatis学习笔记:动态SQL

SSM-MyBatis-05:Mybatis中别名,sql片段和模糊查询加getMapper

mybatis动态sql片段与分页,排序,传参的使用

MyBatis动态SQL标签用法