上节回顾
MySQL基础(一)
- 1. MySQL基础介绍
- 1.1 MySQL的常见命令
- 1.2 MySQL语法规范
- 2. DQL
- 2.1 基础查询
- 2.2 条件查询
- 2.3 模糊查询
- 3. 练习
1. MySQL基础介绍
1.1 MySQL的常见命令
1.查看所有数据库
show databases;
2.打开指定的库
use 库名;
3.查看当前数据库的所有表
show tables;
4.查看其它库的所有表
show tables from 库名;
5.创建表
create table 表名(
列名 列类型,
列名 列类型,
......
)
6.查看表结构
desc 表名;
7.查看服务器版本
方法一:登录到mysql服务端
select version();
方法二:未登录到mysql服务端
mysql --version 或 mysql --V
1.2 MySQL语法规范
1.不区分大小写
2.每条命令用分号结尾或\g结尾
3.每条命令根据需要可以进行缩进或换行
4.注释
单行注释:#注释文字
单行注释:-- 注释文字(--后为空格)
多行注释:
2. DQL
- 数据查询语言,数据库执行DQL语句不会对数据进行改变,而是让数据库发送结果集给客户端。
2.1 基础查询
语法:
select 查询列表 from 表名;
特点:
1.查询列表可以是:表中的字段、常量值、表达式、函数
2.查询的结果是一个虚拟的表格
1.查询表中的单个字段
select last_name from employees;
2.查询表中的多个字段
select last_name,salary,email from employees;
注:可以双击表的名称即可避免因为英语不会导致的问题
3.查看所有表中的所有字段
select * from employees; *代表所有
不足:不能灵活的按照自己想要的进行排列
注:Fn+F12可以对其进行排列
Fn+F9可以立即执行操作
4.查询常量值
select 100;
select 'john';
5.查询表达式
select 100%98;
6.查询函数
select version();
7.起别名
注:便于理解
查询的字段有重名情况,使用别名可以区分出来
方式一:使用as
select 100%98 AS 结果;
select last_name as 姓,first_name as 名 from employees;
方式二:使用空格
select last_name 姓,first_name 名 from employees;
案例:查询salary,显示结果为 out put
SELECt salary AS "out put" FROM employees; out有特殊意义,用双引号可以忽略
8.去重
案例:查询员工表中涉及到的所有部门编号
select distinct department_id from employees;
9.+的作用
仅仅只有一个功能:运算符
select 100+99; 二者都为数值型,则做加法运算
select '100'+99; 试图将字符型转换为数值型,再做加法运算
select 'john'+99; 转换失败,则将字符型数值转换为0,再做加法运算
select null+99;只要一方为null,则结果一定为null
select concat('a','b','c') as 结果; 使用concat函数将abc拼接后输出显示
案例:查询员工名和姓连接成为一个字段,并显示为姓名
select concat(last_name,first_name) as 姓名 from employees;
2.2 条件查询
语法:
select
查询列表
from
表名
where
筛选条件;
分类:
一、按照条件表达式筛选
条件运算符:> < = != >= <=
二、按照逻辑表达式筛选
&& || !
and or not
三、模糊查询
like
between and
in
is null
一、按照条件表达式筛选
案例1:查询工资>12000的员工信息
select
*
from
employees
where salary>12000;
案例2:查询部门编号不等于90号的员工名和部门编号
select
last_name,
department_id
from
employees
where department_id!=90;
建议用department_id<>90
二、按照逻辑表达式筛选
案例1:查询工资在10000到20000之间的员工名、工资以及奖金
select
last_name,
salary,
commission_pct
from
employees
where salary>=10000 and salary<=20000;
案例2:查询部门编号不是在90到110之间,或者工资高于15000的员工信息
select
*
from
employees
where
department_id<90 or department_id>110 or salary>15000;
2.3 模糊查询
1.like
特点:
1.一般和通配符搭配使用
% 任意多个字符,包含0个字符
_ 任意单个字符
案例1:查询员工名中包含字符a的员工信息
select
*
from
employees
where
last_name like '%a%';
案例2:查询员工名中第三个字符为n,第五个字符为l的员工名和工资
select
last_name,
salary
from
employees
where
last_name like '__n_l%';
案例3:查询员工名中第二个字符为_的员工名
select
last_name
from
employees
where
last_name like '_\_%';
转义可以用
like '_\_%';
like '_$_%' escape '$';
2.between and
not between and 不在此区间之内
特点:
使用时可以提高语句的简洁度
包含临界值
两个临界值不能调换顺序
案例1:查询员工编号在100到120之间的员工信息
select
*
from
employees
where
employee_id>=100 and employee_id<=120;
----------------------------------------------
select
*
from
employees
where
employee_id between 100 and 120;
二者效果相同
3.in
含义:判断某字段的值是否属于in列表中的某一项
特点:
提高语句简洁度
in列表的值类型必须一致或兼容
不支持通配符
案例1:查询员工的工种编号是IT_PROT、AD_VP、AD_PRES的一名员工名和工种编号
select
last_name,
job_id
from
employees
where
job_id='IT_PROT' or job_id='AD_VP' or job_id= 'AD_PRES';
------------------------------------------------------------------
select
last_name,
job_id
from
employees
where
job_id in('IT_PROT','AD_VP','AD_PRES');
4.is null
= 或<>不能判断null值
is null 或 is not null 可以判断null值
案例1:查询没有奖金的员工名和奖金率
select
last_name
commission_pct
from
employees
where
commission_pct=null;此种方法无法筛选
----------------------------------------------
select
last_name
commission_pct
from
employees
where
commission_pct is null;
案例2:查询有奖金的员工名和奖金率
select
last_name,
commission_pct
from
employees
where
commission_pct is not null;
安全等于<=>
<=>既能判断null值,又能判断普通的数值,可读性较差
案例1:查询没有奖金的员工名和奖金率
select
last_name,
commission_pct
from
employees
where
commission_pct<=>null
案例2:查询工资为12000的员工信息
select
last_name,
salary
from
employees
where
salary<=>12000;
3. 练习
1.查询工资大于12000的员工姓名和工资
select
last_name,
salary
from
employees
where
salary>12000;
2. 查询员工号为176的员工的姓名和部门号和年薪
select
last_name,
department_id,
salary*12*(1+ifnull(commission_pct,0)) as 年薪
from
employees
where
employee_id=176;
3.选择工资不在5000到12000的员工的姓名和工资
select
last_name,
salary
from
employees
where
salary not between 5000 and 12000;
4.选择在20或50号部门工作的员工姓名和部门号
select
last_name,
department_id
from
employees
where
department_id in(20,50);
5.选择公司中没有管理者的员工姓名及job_id
select
last_name,
job_id
from
employees
where
manager_id is null;
6.选择公司中有奖金的员工姓名,工资和奖金级别
select
last_name,
salary,
commission_pct
from
employees
where
commission_pct is not null;
7.选择员工姓名的第三个字母是a的员工姓名
select
last_name
from
employees
where
last_name like '__a%';
8. 选择姓名中有字母a 和e的员工姓名
select
last_name
from
employees
where
last_name like '%a%' and last_name like '%e%';
9.显示出表employees表中first_name以'e'结尾的员工信息
select
last_name
from
employees
where
first_name like '%e';
10. 显示出表 employees部门编号在80-100间的姓名、职位
select
last_name,
job_id
from
employees
where
department_id between 80 and 100;
11.显示出表employees的manager_id是100,101,110的员工姓名、职位
select
last_name,
job_id
from
employees
where
manager_id in(100,101,110);
经典面试题
试问:select * from employees;
select * from employees where commission_pct like '%%' and last_name like '%%';
结果是否一样,说明原因
答:不一样,当判断的字段有null值时,结果不同
当判断的字段没有null值时,结果相同
当把and换为or时,结果则相同