SELECT

  select的完整语法:

select col1, col2,...          # 业务查询的字段
from table_name # 选取的哪张表
[where single_conditions] # single_conditions条件表达式,个体约束(条件)
[[group by column_name1] # column_name1以哪个字段名分组
[having group_conditions]] # group_conditionds条件表达式,分组约束
[order by column_name2] # column_name2以哪个字段进行排序
[limit N,M] # 执行完之后,跳过N条记录,选取M条记录

  上述如果都有:执行顺序from->where->group by->having->order by->limit->select

  列的结果显示  

    1、去掉重复的数据:distinct(针对于记录而言,不是针对于列的数据而言)

# 查看员工的职位
select title
from s_emp; select distinct title
from s_emp; # 每个部门下有哪些职位
select dept_id,title
from s_emp; select distinct dept_id,title
from s_emp;# 联合唯一

    2、运算符:+、-、*、/、%(只列举一个)

# 查看员工年薪
select salary*12
from s_emp;
select id,last_name,salary*12 as year_salary
from s_emp; # 查看员工当前年薪以及月薪提高100美元后的年薪
select id,last_name,salary*12 old_year_salary,(salary+100)*12 as new_year_salary
from s_emp;

    3、列与列的数据拼接:concat(column_name1, "拼接符", column_name2[, "拼接符"])

# 查看员工基本信息(编号,全名,工资)
select id,concat(first_name,' ',last_name) as name,salary
from s_emp;

    4、将null值转换为特定值:ifnull(column_name, 特定值)

# 查看员工工资(没有工资的显示为0)
select id,last_name,ifnull(salary,0.00) as salary
from s_emp;

  where conditions

    MySQL的运算符概念及作用:

    主要是根据conditions的条件查询结果集

    1、比较运算符:=、<、>、>=、<=、!=、<=>(同is null)、<>(同!=)

# 查看拥有白领工资的员工有哪些(1200,2000)
select id,last_name,salary
from s_emp
where salary>1200 and salary<2000; # 查看有工资的员工信息
select id,last_name,salary
from s_emp
where salary is not null; select id,last_name,salary
from s_emp
where salary <> null;# erro # 查看没有工资的员工的信息
select id,last_name,salary
from s_emp
where salary is null; select id,last_name,salary
from s_emp
where salary <=> null; select id,last_name,salary
from s_emp
where salary != 1200;# null数据未取到

    2、逻辑运算符:and(&&)、or(||)、not

查看41号部门的员工信息并且工资大于1200或者43号部门工资小于2000的员工信息
select id,last_name,salary
from s_emp
where (dept_id=41 and salary>1200) or (dept_id=43 and salary<2000);

    3、在XXX区间:between ... and ...  不在XXX区间:not between ... and ...

查看拥有白领工资的员工有哪些(1200,2000)
select id,last_name,salary from s_emp where salary>1200 and salary<2000;
# 下面是闭区间
select id,last_name,salary
from s_emp
where salary between 1199 and 2001; #[1199,2001] # 不在区间内
select id,last_name,salary
from s_emp
where salary not between 1200 and 2000; #(-&,1200)or(2000,+&)

    4、在集合中: in ()    不在集合中:not in ()

# 查看41,42,43号部门的员工有哪些
select id,last_name,salary
from s_emp
where dept_id=41 and dept_id=42 and dept_id=43;
# 和上面的等价
select id,last_name,salary
from s_emp
where dept_id in(41,42,43); # 查看不是41,42,43号部门的员工有哪些
select id,last_name,salary
from s_emp
where dept_id!=41 and dept_id!=42 and dept_id!=43;
# 和上面的等价
select id,last_name,salary
from s_emp
where dept_id not in(41,42,43)

    6、模糊匹配:like :%:0到多个字符匹配;_:1个字符匹配;[ ]:范围内的匹配的单个字符;[^ ]:范围外的匹配的单个字符;   不模糊匹配: not

# 查看职位以VP开头的员工有哪些
select id,last_name,salary
from s_emp
where title like 'VP%'; select id,last_name,title
from s_emp
where title not like 'VP%'; # 查看员工信息,名字以C开头,并且字符数不小于5个字符
select id,last_name
from s_emp
where last_name like 'C____%';
#查看客户信息,客户名称中包含单引号的客户
select id,name from s_cutomer
where name like "%'%";

  group by column_name

    涉及的组函数:计数count()、最小值min()、最大值max()、平均值avg()、总和sum()

# 查看员工总数
select count(*) as count_num
from s_emp; # 默认分组(以表格为单元)
select count(id) as count_num
from s_emp; # 统计有工资的员工个数
select count(salary) as count_num
from s_emp;
# 查看每个部门的员工个数
select dept_id,count(*) as nums
from s_emp
group by dept_id; # 进行分组后,select的结果只能是组的概念,不允许出现个体概念(last_name)
select dept_id,count(*) as nums,last_name
from s_emp
group by dept_id; # errro # 默认以逗号拼接 group_concat(),这个函数很重要
select dept_id,count(*) as nums,group_concat(last_name)
from s_emp
group by dept_id; # 查看每个部门薪资大于1200的员工总数(信息)
select dept_id,count(*) nums,group_concat(last_name),group_concat(salary)
from s_emp
where salary > 1200
group by dept_id; # 查看部门平均薪资
select avg(salary)
from s_emp
group by dept_id; # 查看部门平均薪资>2000员工总数
select dept_id,count(*) nums,avg(salary)
from s_emp
group by dept_id
having avg(salary)>2000; # 查看每个部门员工总数,部门平均薪资大于1000,并且每个员工的薪资>900
select dept_id,count(*),avg(salary)
from s_emp
where salary >900
group by dept_id
having avg(salary)>1000

    排序order by:升序ASC;逆序DESC

# 查看员工的员工ID,名字,月薪,部门ID,部门ID进行升序排序,相同部门的员工在一起按照薪资从高到低排序

select id,last_name,dept_id,salary
from s_emp
order by dept_id asc,salary desc; # 如果进行排序的时候,需要对字段先进行转码,后排序
select id,last_name,dept_id,salary
from s_emp
order by conver(dept_id asc,salary using gbk2312) desc;

    限制记录数目:limit N,M  跳过N条记录,查询M条记录

# 跳过3条记录,查询5条记录,这一般用于分页比较合理
# 擦昏地当前页数和记录数
select id,last_name,dept_id,salary
from s_emp
order by dept_id asc,salary desc
limit 3, 5 # 当数据表的记录上万条,比如超过1万条记录
# 建议使用子查询进行分页,这样效率高点,因为子查询是在索引文件(所以你文件比较小,数据文件比较大,处理上就比较慢)上执行的
select id, last_name, dept_id, salary
from s_emp
where id >=(
select id
from s_emp
order by id
limit 10000, 1
)
limit 10;

MySQL查询——select的更多相关文章

  1. mysql 查询select语句汇总

    数据准备: 创建表: create table students( id int unsigned primary key auto_increment not null, name varchar( ...

  2. MySQL的select多表查询

    select 语句: select 语句一般用法为: select 字段名 from tb_name where 条件 ; select 查询语句类型一般分为三种:  单表查询,多表查询,子查询 最简 ...

  3. mysql DML select查询

    windows上的操作 1.从官网下载mysql 下载navicat,用来连接mysql的 2.打开运行启动mysql 3.在navicat上的连接打开新建连接 然后输入链接名,连接名就是用户名,自己 ...

  4. MySQL查询语句(select)详解(1)

    1.查询记录 select*from 表名 [where 条件];eg:select*from students;//查询 students 表中所有记录,所有字段的值都显示出来select fiel ...

  5. mysql数据库(二):查询(SELECT)

    一. 数据库查询—查询(SELECT) 单表查询 多表联合查询 二. 查询—单表查询 查询特定字段: select <字段1,字段2,...> from <表名>; 示例:查询 ...

  6. mysql之select查询:练习

    单表查询: 数据查询命令:select 识别要查询的列 from识别要查询的表 select 运算符: + .-.*./. 加减乘除 等于= 不等于!= 或 <> 大于等于>= 小于 ...

  7. mysql查询性能优化

    mysql查询过程: 客户端发送查询请求. 服务器检查查询缓存,如果命中缓存,则返回结果,否则,继续执行. 服务器进行sql解析,预处理,再由优化器生成执行计划. Mysql调用存储引擎API执行优化 ...

  8. Mysql查询——深入学习

    1.开篇 之前上一篇的随笔基本上是单表的查询,也是mysql查询的一个基本.接下来我们要看看两个表以上的查询如何得到我们想要的结果. 在学习的过程中我们一起进步,成长.有什么写的不对的还望可以指出. ...

  9. Mysql 查询练习

    Mysql 查询练习 ---创建班级表 create table class( cid int auto_increment primary key, caption ) )engine=innodb ...

随机推荐

  1. jQYERY

    1.事件流: (1)事件捕获 (2)处于目标阶段 (3)事件冒泡 2.事件对象 对每一个事件都会回调函数,会有一个默认的事件对象,就是this event.target 触发的目标对象 event.t ...

  2. 2018710101021-王方-《面向对象(java)程序设计》第十一周学习总结

    项目 内容 这个作业属于哪个课程 https://www.cnblogs.com/nwnu-daizh/ 这个作业的要求在哪里 https://www.cnblogs.com/nwnu-daizh/p ...

  3. 【软件工程1916|W(福州大学)_助教博客】2019年上学期期末问卷调查结果公示

    1.调查问卷概况 福州大学2019W班,收集到有效答卷44份 2. 调查问卷情况 Q1:请问你平均每周在课程上花费多少小时? 去除自估水平超过40小时的,平均16.6H Q2.软工实践的各次作业分别花 ...

  4. Maven 依赖范围 scope 属性详解

    依赖范围就是用来控制依赖与三种 classpath(编译 classpath.测试 classpath.运行 classpath)的关系. 依赖范围(scope) 对于编译 classpath 有效 ...

  5. python27期day14:有参装饰器、多个装饰器装饰一个函数、递归、作业题

    1.有参装饰器:给装饰器添加一个参数.来控制装饰器的行为. @auth(参数) auth里层的函数名 = auth(参数) 被装饰的函数名 = auth里层的函数名(被装饰的函数名) 被装饰的函数名( ...

  6. 文件上传-pubsec-文件上传大小限制

    文件上传-pubsec-文件上传大小限制 Caused by: java.lang.IllegalArgumentException: ContextPath must start with '/' ...

  7. 【入门篇一】HelloWorld演示(2)

    一.传统使用 Spring 开发一个“HelloWorld”的 web 应用 1. 创建一个 web 项目并且导入相关 jar 包. 2. 创建一个 web.xml 3. 编写一个控制类(Contro ...

  8. C++面向对象程序设计学习笔记(1)

    基本概念 对象: 面向对象程序设计中,对象是描述其属性的数据以及对这些数据施加的一组操作封装在一起构成的统一体,每个对象都是由数据和操作代码两部分构成的. 类: 面向对象程序设计中,类是具有相同的数据 ...

  9. 7.Vue的计算属性

    1.什么是计算属性 computed:计算属性的重点突出在 属性 两个字上(属性是名词),首先它是个 属性 其次这个属性有 计算的能力(计算是动词),这里的 计算 就是个函数:简单点说,它就是一个能够 ...

  10. [LeetCode] 670. Maximum Swap 最大置换

    Given a non-negative integer, you could swap two digits at most once to get the maximum valued numbe ...