首先,查询数据库并是选择一个数据库打开
show table;
use sys
第二部,创建一个表格
CREATE TABLE `employee` (
`部门号` int(11) not null,
`职工号` int(11) not null,
`工作时间` date not null,
`工资` float(8,2) not null,
`政治面貌` varchar(20) not null default '群众',
`姓名` varchar(20) not null,
`出生日期` date not null,
primary key (`职工号`)
)engine=InnoDB default charset=utf8 ROW_FORMAT=DYNAMIC;
第三步,插入职工信息
insert into `employee`
values
(101,1001,'2015-5-4',3500.00,'群众','张三','1990-7-1'),
(101,1002,'2017-2-6',3200.00,'团员','李四','1997-2-8'),
(102,1003,'2011-1-4',8500.00,'党员','王亮','1983-6-8'),
(102,1004,'2016-10-10',5500.00,'群众','赵六','1994-9-5'),
(102,1005,'2014-4-1',4800.00,'党员','钱七','1992-12-30'),
(102,1006,'2017-5-5',1500.00,'党员','孙八','1996-9-2');
1.查询插入数据后的表格
select * from employee;
2.查询所有职工所属部门的部门号,不显示重复的部门号
select distinct `部门号` from `employee`;
3.求出所有职工的人数
select count(`姓名`)as 职工人数 from `employee`;
4.列出职工的平均工资和总工资
mysql> select max(`工资`) as 最高工资,min(`工资`) as 最低工资 from `employee`;
5.列出职工的平均工资和总工资
select avg(`工资`) as 平均工资,sum(`工资`) as 总工资 from `employee`;
6.创建一个只有职工号、姓名和参加工作的新表,名为工作日期表。
create table `data` select `职工号`,`姓名`,`工作时间`from `employee`;
7.显示所有女职工的年龄
select '年龄' from employee;
8.列出所有姓刘的职工的职工号、姓名和出生日期
select count(`姓名`)as 职工人数 from `employee`;
9.列出1960年以前出生的职工的姓名、参加工作日期
select `姓名`,`工作时间` from `employee` where `出生日期`<'1960-1-1';
select `姓名` from `employee` where `工资`>1000 and `工资`<2000;
select `姓名` from `employee` where `姓名` like '陈%' or `姓名` like '李%';
select `职工号`,`姓名`,`政治面貌` from `employee` where `部门号`=102 or `部门号`=103;
13.将职工表worker中的职工按出生的先后顺序排序
select *from `employee`order by `出生日期` asc;
14.显示工资最高的前3名职工的职工号和姓名
select `职工号`,`姓名` from `employee` order by `工资` desc limit 3;
select`部门号`, count(*) AS 党员人数 from `employee` where `政治面貌` = '党员' group by`部门号`;
16.统计各部门的工资和平均工资
select `部门号`, sum(`工资`) as 工资总和, avg(`工资`) as 平均工资 from `employee` group by`部门号`;
17.列出总人数大于4的部门号和总人数
select `部门号`, count(*) as 总人数 from `employee` group by `部门号` having count(*) > 4;