需求找出年龄是 81 或者 73 或者 28 mysql ; +----+-----------+--------+-----+------------+-----------+--------------+----------+--------+-----------+ | id | name | sex | age | hire_date | post | post_comment | salary | office | depart_id | +----+-----------+-----…
mysql 数据操作 单表查询 where约束 between and or mysql 数据操作 单表查询 where约束 is null in mysql 数据操作 单表查询 where约束 like 模糊匹配 mysql 数据操作 单表查询 where约束 工作模式 mysql 数据操作 单表查询 where约束 练习…
WHERE约束 where字句中可以使用: 比较运算符:>< >=  <=  != between 80 and 100 值在80到100之间   >=80  <=100 in(80,90,100) 值是80或90或100    满足这个条件就可以 like 'egon%'pattern可以是%或_,%表示任意多字符_表示一个字符 逻辑运算符:在多个条件直接可以使用逻辑运算符 and or not select id,name,age from employee whe…
select name,age from employee where id >7; 1.首先先找到表   from employee 2.表存在 mysql拿着约束条件  去表里 看依次匹配数据 符合这个条件不 如果匹配的数据 不符合 不应该丢给select 去打印数据 再去匹配第二条数据 匹配成功的数据 丢给select 处理  然后select 根据指定的字段 name,age 去打印数据 where会把整个记录走一遍…
mysql> select * from employee; +----+------------+--------+-----+------------+-----------+--------------+------------+--------+-----------+ | id | name | sex | age | hire_date | post | post_comment | salary | office | depart_id | +----+------------+-…
create table employee( id int not null unique auto_increment, name ) not null, sex enum('male','female') not null default 'male', #大部分是男的 age ) unsigned , hire_date date not null, post ), post_comment ), salary ,), office int, #一个部门一个屋子 depart_id int…
mysql 数据操作 单表查询 mysql 数据操作 单表查询 简单查询 避免重复DISTINCT mysql 数据操作 单表查询 通过四则运算查询 mysql 数据操作 单表查询 concat()函数 定义显示格式 mysql 数据操作 单表查询 练习 mysql 数据操作 单表查询 concat_ws() 定义显示格式 mysql 数据操作 单表查询 where 约束 mysql 数据操作 单表查询 group by 分组 mysql 数据操作 单表查询 having 过滤 mysql 数据…
mysql 数据操作 单表查询 group by 介绍 mysql 数据操作 单表查询 group by 聚合函数 mysql 数据操作 单表查询 group by 聚合函数 没有group by情况下 mysql 数据操作 单表查询 group by group_concat() 函数 mysql 数据操作 单表查询 group by 注意 mysql 数据操作 单表查询 group by 练习…
group by 是在where 之后运行 在写单表查询语法的时候 应该把group by 写在 where 之后 执行顺序 1.先找到表 from 库.表名 2.按照where 约束条件 过滤你想要的记录 3.group by 进行分组 4.分完组以后 再进行相应的查询 分组查询:GROUP BY 一 什么是分组?为什么要分组? 分类一定要找大家都有一样的属性 #.首先明确一点:分组发生在where之后,即分组是基于where之后得到的记录而进行的 #.分组指的是:将所有记录按照某个相同字段进…
单表查询的语法 distinct 去重 SELECT 字段1,字段2... FROM 表名 库.表名 WHERE 条件 过滤 符合条件的 GROUP BY field 分组条件 HAVING 筛选 过滤 ORDER BY field 排序字段 LIMIT n 限制条数 ; select distinct 字段1,字段2 关键字的执行优先级(重点) 重点中的重点:关键字的执行优先级 from where group by having select distinct order by limit…