本节重点: 多表连接查询 符合条件连接查询 子查询 准备工作:准备两张表,部门表(department)、员工表(employee) create table department( id int, name varchar(20) ); create table employee( id int ...
分类:
其他好文 时间:
2018-11-10 15:31:00
阅读次数:
201
You are given a data structure of employee information, which includes the employee's unique id, his importance value and his direct subordinates' id. ...
分类:
其他好文 时间:
2018-11-06 22:29:38
阅读次数:
143
1 1.注意: 2 select * from t1 where 条件 group by 分组字段 3 1.分组只能查询分组字段,要想查看其余的利用聚合函数 4 2.聚合函数的分类:count,min,max,avg,group_concat,sum等。 5 3.模糊匹配:用like关键字。 6 s ...
分类:
数据库 时间:
2018-11-06 22:26:56
阅读次数:
168
参考文献:https://www.cnblogs.com/xiongxuanwen/p/4290086.html 类的一个重要点是构造函数,其官方说明为: 构造函数是一个特殊的、与类同名的成员函数,用于给每个数据成员设置适当的初始值。 例如: 其中定义了类employee,同时定义了构造函数empl ...
分类:
编程语言 时间:
2018-11-04 00:41:21
阅读次数:
180
级联是resultMap中的配置。 级联分为3种 鉴别器(discrimination):根据某些条件采用具体实现具体实现类级联,如体检表根据性别去区分 一对一:学生和学生证 一对多:班主任和学生。 ...
分类:
其他好文 时间:
2018-11-03 23:14:33
阅读次数:
318
You are given a data structure of employee information, which includes the employee's unique id, his importance value and his direct subordinates' id. ...
分类:
编程语言 时间:
2018-11-03 11:17:45
阅读次数:
152
There is a company that has N employees(numbered from 1 to N),every employee in the company has a immediate boss (except for the leader of whole compa ...
分类:
其他好文 时间:
2018-11-02 13:00:26
阅读次数:
154
1. 分页显示,每页5条 mysql> select * from employee limit 0,5; +----+------------+--------+-----+------------+---------+--------------+------------+--------+--... ...
分类:
数据库 时间:
2018-11-01 18:58:53
阅读次数:
246
1. 查询各岗位内包含的员工个数小于2的岗位名、岗位内包含员工名字、个数 mysql> select post,group_concat(name),count(id) from employee group by post; +-----------+-----------------------... ...
分类:
数据库 时间:
2018-11-01 17:00:15
阅读次数:
188
1. 查询岗位名以及岗位包含的所有员工名字 mysql> select post,group_concat(name) from employee group by post; +-----------+------------------------------------------------... ...
分类:
数据库 时间:
2018-10-30 19:31:43
阅读次数:
173