表结构: company.employee 员工id id int 姓名 emp_name varchar 性别 sex enum 年龄 age int 入职日期 hire_date date 岗位 post varchar 职位描述 post_comment varchar 薪水 salary d ...
分类:
其他好文 时间:
2018-08-01 16:41:26
阅读次数:
170
重点: 多表连接查询 符合条件连接查询 子查询 准备工作:准备两张表,部门表(department)、员工表(employee) create table department( id int, name varchar(20) ); create table employee( id int pr ...
分类:
其他好文 时间:
2018-08-01 13:57:51
阅读次数:
125
原题链接在这里:https://leetcode.com/problems/employee-free-time/description/ 题目: We are given a list schedule of employees, which represents the working time ...
分类:
其他好文 时间:
2018-08-01 12:07:29
阅读次数:
404
1.1@Table 注解 注解作用:建立实体类和数据库表之间的对应关系。默认规则:实体类类名首字母小写作为表名。Employee 类→employee 表。 用法:在@Table 注解的 name 属性中指定目标数据库表的表名 1.2@Column 注解 注解作用:建立实体类字段和数据库表字段之间的 ...
分类:
移动开发 时间:
2018-07-30 21:28:58
阅读次数:
658
employee 表 | id | name | gender | hire_date | salary | performance | manage | deparmant | | | | | | | | | | | 1001 | 张三 | 男 | 2/12/1991 00:00:00 | 200 ...
分类:
数据库 时间:
2018-07-30 14:38:32
阅读次数:
168
转自:https://blog.csdn.net/buptman1/article/details/38657807 multi_index_container: Boost Multi-index Containers Library定义了multi_index_container模板类,可以从不 ...
分类:
其他好文 时间:
2018-07-26 23:28:01
阅读次数:
179
1、Mapper类package cn.sjq.bigdata.mr.salary;import java.io.IOException;import org.apache.commons.lang.StringUtils;import org.apache.hadoop.io.LongWritable;import org.apache.hadoop.io.Text;import org.apa
分类:
其他好文 时间:
2018-07-26 10:50:51
阅读次数:
254
<ImageView android:id="@+id/adapter_store_employee_list_imgv_sex" android:layout_width="wrap_content" android:layout_height="wrap_content" android:lay ...
分类:
移动开发 时间:
2018-07-24 15:52:50
阅读次数:
177
一、成功的索引优化1.表数据如下:2.查询语句如下:explain select id, age, level from employee where dpId = 1 and age = 30 order by levelExtra: Using where; Using filesort出现了Using filesort需要进行优化。方法很简单,为查询,分组或排序的字段建索引即可。3.建索引优
分类:
数据库 时间:
2018-07-24 12:27:48
阅读次数:
178
创建两个类一个employee,一个department package com.cn.orm; public class Department { private Integer deptId; private String deptName; public Integer getDeptId() ...
分类:
其他好文 时间:
2018-07-20 00:23:50
阅读次数:
182