mysql 基础列题

1:emp表中查询公司总共有几个部门
注意,会查询出来大量重复的,使用函数distinct
select distinct job from scott.emp;

2:查询公司工资在1000-3000之间的人有哪些
使用函数between ...and..
select * from scott.emp where sal between 3000 and 5000;

3:查询公司没有奖金的人
使用null 和“” 不一样
select * from scott.emp where comm is null;

4:查询公司员工职位是‘manager‘,‘clerk‘ 的人
select * from scott.emp where lower(job) in(‘manager‘,‘clerk‘);
查询不是这两个职位的人
select * from scott.emp where upper(job) not in(‘MANAGER‘,‘CLERK‘);

5:查询工资最高的人
查询每个部门工资最高的人?--分组查询
select deptno,max(sal) from scott.emp group by deptno ;
完整版
29:-每个部门的最高薪水是多少
select * from scott.emp where (deptno,sal) in (select deptno,max(sal) from scott.emp group by deptno);

7:-查询比20部门总人数多的部门
select deptno from scott.emp group by deptno having count(*) >(select count(*) from scott.emp where deptno=20);

13:薪水由高到低排序( 降序排列 )
select empno,ename,sal from scott.emp order by sal desc;
14-按入职时间排序 , 入职时间越早排在前面
select hiredate from scott.emp order by hiredate;
15按部门排序 , 同一部门按薪水由高到低排序
select deptno,sal from scott.emp order by deptno,sal desc;
16计算员工的薪水总和是多少?sum()
select sum(sal)+sum(comm) from scott.emp;
17计算最早和最晚的员工入职时间
select min(hiredate),max(hiredate) from scott.emp;

(查最早和最晚入职的人的信息)
select * from emp where hireDate in (select max(hireDate) from emp)
UNION
select * from emp where hireDate in (select min(hireDate) from emp)

18按部门计算每个部门的最高和最低薪水分别是多少
select deptno,max(sal),min(sal) from scott.emp group by deptno order by deptno;

19计算每个部门的 薪水总和 和 平均薪水?
select deptno,sum(sal),avg(sal) from scott.emp group by deptno;

20按职位分组 , 每个职位的最高、最低薪水和人数?
select job,max(sal),min(sal),count(*) from scott.emp group by job;

21平均薪水大于5000元的部门数据`
select deptno,avg(sal) from scott.emp group by deptno having avg(sal)>2000;
22薪水总和大于20000元的部门数据
select deptno,sum(sal) from scott.emp group by deptno having sum(sal)>10000;
23:哪些职位的人数超过2个人
select job,count(*) from scott.emp group by job having count(*)>2;

24:查询最高薪水的是谁?-查询最低薪水的员工
select ename from scott.emp where sal=(select max(sal) from scott.emp);

25:谁的工资比smith高
select ename from scott.emp where sal>(select sal from scott.emp where lower(ename)=‘smith‘);

26销售部门有哪些职位存在
select job from scott.emp where deptno=(select deptno from scott.dept where lower(dname)=‘sales‘);

--思考:
-- 谁的工资比smith高这道题目中如果存在两个角simth的人会怎么样?
--all:满足全部
--any:任意一个
insert into scott.emp(empno,ename,sal) values(9527,‘smith‘,888);

select ename from scott.emp where sal>all(select sal from scott.emp where lower(ename)=‘smith‘);

27-查询谁和smith是同一个部门的员工
select empno,ename,deptno from scott.emp where deptno=(select deptno from scott.emp where lower(ename)=‘smith‘);

28查询谁是员JAMES的下属
select empno,ename from scott.emp where mgr in(select mgr from scott.emp where lower(ename)=‘james‘);

30哪个部门的人数比部门20的人数多
select deptno,count(*) from scott.emp group by deptno having count(*)>
(select count(*) from scott.emp where deptno=20);

31:哪些员工的薪水比公司的平均薪水低?
select empno,ename from scott.emp where sal<(select avg(sal) from scott.emp);

--------------------------------------------华丽的分割线-----------------------------------------------------------------

Navicat MySQL Data Transfer   员工管理

Source Server : wode
Source Server Version : 50022
Source Host : localhost:3306
Source Database : j121

Target Server Type : MYSQL
Target Server Version : 50022
File Encoding : 65001

Date: 2016-05-09 10:33:00
*/

SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for `dept`
-- ----------------------------
DROP TABLE IF EXISTS `dept`;
CREATE TABLE `dept` (
`deptNo` int(11) NOT NULL,
`dname` varchar(20) default NULL,
`loc` varchar(40) default NULL,
PRIMARY KEY (`deptNo`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

-- ----------------------------
-- Records of dept
-- ----------------------------
INSERT INTO dept VALUES (‘10‘, ‘accounting‘, ‘new york‘);
INSERT INTO dept VALUES (‘20‘, ‘research‘, ‘dallas‘);
INSERT INTO dept VALUES (‘30‘, ‘sales‘, ‘chicago‘);
INSERT INTO dept VALUES (‘40‘, ‘operations‘, ‘boston‘);

-- ----------------------------
-- Table structure for `emp`
-- ----------------------------
DROP TABLE IF EXISTS `emp`;
CREATE TABLE `emp` (
`id` int(11) NOT NULL auto_increment,
`empno` int(11) default NULL,
`eName` varchar(20) default NULL,
`job` varchar(10) default NULL,
`mgr` int(11) default NULL,
`hireDate` date default NULL,
`sal` decimal(7,2) default NULL,
`comm` decimal(7,2) default NULL,
`deptNo` int(11) default NULL,
PRIMARY KEY (`id`),
KEY `FK_emp_deptNo` (`deptNo`),
CONSTRAINT `FK_emp_deptNo` FOREIGN KEY (`deptNo`) REFERENCES `dept` (`deptNo`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

-- ----------------------------
-- Records of emp
-- ----------------------------
INSERT INTO emp VALUES (‘1‘, ‘7369‘, ‘smith‘, ‘clerk‘, ‘7902‘, ‘1980-12-17‘, ‘800.00‘, null, ‘20‘);
INSERT INTO emp VALUES (‘2‘, ‘7499‘, ‘allen‘, ‘salesman‘, ‘7698‘, ‘1981-02-20‘, ‘1600.00‘, ‘300.00‘, ‘30‘);
INSERT INTO emp VALUES (‘3‘, ‘7521‘, ‘ward‘, ‘salesman‘, ‘7698‘, ‘1981-02-22‘, ‘1250.00‘, ‘500.00‘, ‘30‘);
INSERT INTO emp VALUES (‘4‘, ‘7566‘, ‘jones‘, ‘manager‘, ‘7839‘, ‘1981-04-02‘, ‘2975.00‘, null, ‘20‘);
INSERT INTO emp VALUES (‘5‘, ‘7654‘, ‘martin‘, ‘salesman‘, ‘7698‘, ‘1981-09-28‘, ‘1250.00‘, ‘1400.00‘, ‘30‘);
INSERT INTO emp VALUES (‘6‘, ‘7698‘, ‘blake‘, ‘manager‘, ‘7839‘, ‘1981-05-01‘, ‘2850.00‘, null, ‘30‘);
INSERT INTO emp VALUES (‘7‘, ‘7782‘, ‘clark‘, ‘manager‘, ‘7839‘, ‘1981-06-09‘, ‘2450.00‘, null, ‘10‘);
INSERT INTO emp VALUES (‘8‘, ‘7788‘, ‘scott‘, ‘analyst‘, ‘7566‘, ‘1987-07-31‘, ‘3000.00‘, null, ‘20‘);
INSERT INTO emp VALUES (‘9‘, ‘7839‘, ‘king‘, ‘president‘, null, ‘1981-11-17‘, ‘5000.00‘, null, ‘10‘);
INSERT INTO emp VALUES (‘10‘, ‘7844‘, ‘turner‘, ‘salesman‘, ‘7698‘, ‘1981-09-08‘, ‘1500.00‘, ‘0.00‘, ‘30‘);
INSERT INTO emp VALUES (‘11‘, ‘7876‘, ‘adams‘, ‘clerk‘, ‘7788‘, ‘1987-07-13‘, ‘1100.00‘, null, ‘20‘);
INSERT INTO emp VALUES (‘12‘, ‘7900‘, ‘james‘, ‘clerk‘, ‘7698‘, ‘1981-12-03‘, ‘950.00‘, null, ‘30‘);
INSERT INTO emp VALUES (‘13‘, ‘7902‘, ‘ford‘, ‘analyst‘, ‘7566‘, ‘1981-12-03‘, ‘3000.00‘, null, ‘20‘);
INSERT INTO emp VALUES (‘14‘, ‘7934‘, ‘miller‘, ‘clerk‘, ‘7782‘, ‘1982-02-23‘, ‘1300.00‘, null, ‘10‘);

时间: 2024-10-22 19:46:40

mysql 基础列题的相关文章

MySQL基础实战

一.数据库基础: DBMS:数据库管理系统(Database Management System) RDBMS:关系数据库管理系统(Relational Database Management System) C/S:通过专有协议 关系模型:表(行,列),二维关系 范式:第一范式,第二范式,第三范式: 关系运算: 选择 投影 数据库:表,索引,视图(虚表) SQL:结构化查询语言 DDL:数据定义语言 DML:数据操作语言 编程接口: 自行定义存储过程 自行定义存储函数 触发器: 时间调度器:类

mysql 基础之CURD

原文:mysql 基础之CURD 增删改查基本语法学习 增: insert Insert 3问: 1: 插入哪张表? 2: 插入哪几列? 3: 这几列分别插入什么值? Insert into TableName (列1,列2.... 列n) Values (值1,值2,....值n) 值 与 列,按顺序,一一对应 特殊: insert语句 允不允许不写列名 答: 允许. 如果没有声明列明,则默认插入所有列. 因此,值应该与全部列,按顺序一一对应. 例:建一张工资登记表 2:插入部分列 注:文中的

MYSQL养成记-MYSQL基础增强(Myql函数)

MYSQL基础增强(Myql函数) 在这里只介绍一些常用的,比较新颖的: 字符串函数: CONCAT://字符串连接函数mysql> SELECT CONCAT('My', 'S', 'QL'); -> 'MySQL' mysql> SELECT CONCAT('My', NULL, 'QL');//与null连接会变null -> NULL mysql> SELECT CONCAT(14.3); -> '14.3' CONCAT_WS://含分隔符的字符串连接mysq

mysql基础和数据库的优化

Mysql基础... 4 Mysql介绍... 4 登录mysql mysql –u root –p[掌握]... 4 SQL语言... 4 DCL. 4 grant. 4 revoke. 4 DDL. 4 建库... 4 删库... 4 建表... 4 看表结构... 5 删表... 5 修改表... 5 DML[重点]... 5 增加... 5 删除... 5 修改... 5 查看... 5 排序... 5 总数... 5 求和... 5 平均... 6 最大... 6 最小... 6 表连

MYSQL基础笔记(三)-表操作基础

数据表的操作 表与字段是密不可分的. 新增数据表 1 Create table [if not exists] 表名( 2 字段名 数据类型, 3 字段名 数据类型, 4 字段n 数据类型 --最后一行不需要加逗号 5 )[表选项]; If not exists:如果表名不存在,那么就创建,否则不执行创建代码,实现检查功能. 表选项:控制表的表现 1.字符集:charset/character 具体字符集:--保证表中数据存储的字符集. 2.校对集:collate 具体校对集: 3.存储引擎:e

MySQL基础知识

MySQL基础知识: 一. 知识点:        1. SQL分类:按照其功能不同,分为3中类别           DDL(Data Defintion Language):数据定义语句,用于定义不同的数据段.数据库.表.列.索引等.常用的语句关键字包括create.drop.alter等;             DML(Data Manipulation Language):数据操纵语句,用于添加.删除.更新和查询数据库记录,并检查数据的完整性.常用的语句关键字主要包括insert.de

Mysql基础入门-SQL_DDL语句

一.mysql数据库介绍: mysql数据库属于关系型数据库,关系型数据库是指采用关系模型来组织数据的数据库,似于Excel函数关系表.保持数据的一致性是关系型数据库的最大优势 关系型数据库瓶颈: 1.高并发读写硬盘I/O瓶颈; 2.对于关系型数据来说在一张海量数据表中查询效率是非常低的: 3.横向扩展困难,当一个应用系统用户量访问与日俱增的时候数据库没有办法像web server那样简单的通过添加更多的硬件或者节点来扩展和提供负载能力. 对于并发量不高及数据量较小的应用系统mysql还是占有很

MySQL基础1

类型 mysql sqlserver http Tomcat oracle 端口 3306 1433 80 8080 1521 |-----启动mysql服务的dos命令 停止mysql:net stop mysql 启动mysql:net start mysql |-----连接.退出mysql 格式:mysql  -h主机地址 -u用户名 p用户密码 -前均有空格,h代表进入的服务器(本机可以不写),u代表用户名(用户名默认为root),p代表密码(默认密码为p0).mysql提示符是mys

MySQL基础及MySQL C API编程

MySQL基础及MySQL C API编程 一.MySQL For Windows安装: 1. 下载: 上官网下载即可: http://www.mysql.com/downloads/ 2. 安装: 没有什么好说的,傻瓜式,也没有什么要注意的. 3. 配置: 添加系统变量MYSQL_HOME和修改PATH,目的就是让系统默认能够找到MySQL命令.(安装目录的/bin下面) PS: 补充一下,有的朋友可能下载的是免安装版本,拷贝到一个地方就可以了,这个时候,配置还是需要的,但是配置完成之后,需要