day06-单表查询
1、单表查询的语法
SELECT 字段1,字段2... FROM 表名
WHERE 条件
GROUP BY field
HAVING 筛选
ORDER BY field
LIMIT 限制条数
2、关键字的执行优先级(重点)
重点中的重点:关键字的执行优先级
from
where
group by
having
select
distinct
order by
limit
1.找到表:from
2.拿着where指定的约束条件,去文件/表中取出一条条记录
3.将取出的一条条记录进行分组group by,如果没有group by,则整体作为一组
4.将分组的结果进行having过滤
5.执行select
6.去重distinct
7.将结果按条件排序:order by
8.限制结果的显示条数
创建公司员工表,表的字段和数据类型
company.employee
员工id id int
姓名 name varchar
性别 sex enum
年龄 age int
入职日期 hire_date date
岗位 post varchar
职位描述 post_comment varchar
薪水 salary double
办公室 office int
部门编号 depart_id int 创建员工表,并插入记录
#创建表,设置字段的约束条件
create table employee(
id int primary key auto_increment,
name varchar(20) not null,
sex enum('male','female') not null default 'male', #大部分是男的
age int(3) unsigned not null default 28,
hire_date date not null,
post varchar(50),
post_comment varchar(100),
salary double(15,2),
office int,#一个部门一个屋
depart_id int
); # 查看表结构
mysql> desc employee;
+--------------+-----------------------+------+-----+---------+----------------+
| Field | Type | Null | Key | Default | Extra |
+--------------+-----------------------+------+-----+---------+----------------+
| id | int(11) | NO | PRI | NULL | auto_increment |
| emp_name | varchar(20) | NO | | NULL | |
| sex | enum('male','female') | NO | | male | |
| age | int(3) unsigned | NO | | 28 | |
| hire_date | date | NO | | NULL | |
| post | varchar(50) | YES | | NULL | |
| post_comment | varchar(100) | YES | | NULL | |
| salart | double(15,2) | YES | | NULL | |
| office | int(11) | YES | | NULL | |
| depart_id | int(11) | YES | | NULL | |
+--------------+-----------------------+------+-----+---------+----------------+ #三个部门:教学,销售,运营
insert into employee(name ,sex,age,hire_date,post,salary,office,depart_id) values
('mike','male',28,'','teacher',7300.33,401,1), #以下是教学部
('jack','male',30,'','teacher',1000000.31,401,1),
('tom','male',21,'','teacher',8300,401,1),
('lucy','male',25,'','teacher',3500,401,1),
('alice','male',28,'','teacher',2100,401,1),
('frank','female',18,'','teacher',2000,401,1),
('lilei','male',28,'','teacher',30000,401,1),
('hanmeimei','female',28,'','teacher',10000,401,1), ('小美','female',48,'','sale',3000.13,402,2),#以下是销售部门
('小花','female',38,'','sale',2000.35,402,2),
('小草','female',18,'','sale',1000.37,402,2),
('小星','female',18,'','sale',3000.29,402,2),
('小月','female',28,'','sale',4000.33,402,2), ('程咬金','male',18,'','operation',20000,403,3),#以下是运营部门
('程咬银','female',18,'','operation',19000,403,3),
('程咬铜','male',18,'','operation',18000,403,3),
('程咬铁','female',18,'','operation',17000,403,3); # 查看表数据
mysql> select * from employee;
+----+-----------+--------+-----+------------+-----------+--------------+------------+--------+-----------+
| id | name | sex | age | hire_date | post | post_comment | salary | office | depart_id |
+----+-----------+--------+-----+------------+-----------+--------------+------------+--------+-----------+
| 1 | mike | male | 28 | 2012-03-01 | teacher | NULL | 7300.33 | 401 | 1 |
| 2 | jack | male | 30 | 2015-03-02 | teacher | NULL | 1000000.31 | 401 | 1 |
| 3 | tom | male | 21 | 2013-03-05 | teacher | NULL | 8300.00 | 401 | 1 |
| 4 | lucy | male | 25 | 2014-07-01 | teacher | NULL | 3500.00 | 401 | 1 |
| 5 | alice | male | 28 | 2012-11-01 | teacher | NULL | 2100.00 | 401 | 1 |
| 6 | frank | female | 18 | 2018-02-11 | teacher | NULL | 2000.00 | 401 | 1 |
| 7 | lilei | male | 28 | 2012-03-01 | teacher | NULL | 30000.00 | 401 | 1 |
| 8 | hanmeimei | female | 28 | 2010-11-11 | teacher | NULL | 10000.00 | 401 | 1 |
| 9 | 小美 | female | 48 | 2015-03-11 | sale | NULL | 3000.13 | 402 | 2 |
| 10 | 小花 | female | 38 | 2010-11-01 | sale | NULL | 2000.35 | 402 | 2 |
| 11 | 小草 | female | 18 | 2011-03-12 | sale | NULL | 1000.37 | 402 | 2 |
| 12 | 小星 | female | 18 | 2016-05-13 | sale | NULL | 3000.29 | 402 | 2 |
| 13 | 小月 | female | 28 | 2017-01-27 | sale | NULL | 4000.33 | 402 | 2 |
| 14 | 程咬金 | male | 18 | 1997-03-12 | operation | NULL | 20000.00 | 403 | 3 |
| 15 | 程咬银 | female | 18 | 2013-03-11 | operation | NULL | 19000.00 | 403 | 3 |
| 16 | 程咬铜 | male | 18 | 2015-04-11 | operation | NULL | 18000.00 | 403 | 3 |
| 17 | 程咬铁 | female | 18 | 2014-05-12 | operation | NULL | 17000.00 | 403 | 3 |
+----+-----------+--------+-----+------------+-----------+--------------+------------+--------+-----------+
3、where 约束
where子句中可以使用
1.比较运算符:>、<、>=、<=、<>、!=
2.between 80 and 100 :值在80到100之间
3.in(10,20,30)值是10或20或30
4.like 'tom&' line 'tom_': %表示任意多个字符,_表示任意一个字符
5.逻辑运算符:多个条件可以使用逻辑运算符 and or not
验证结果:
1.单条件查询
#查询id>5的所有id和name
mysql> select id, name from employee where id>5;
+----+-----------+
| id | name |
+----+-----------+
| 6 | frank |
| 7 | lilei |
| 8 | hanmeimei |
| 9 | 小美 |
| 10 | 小花 |
| 11 | 小草 |
| 12 | 小星 |
| 13 | 小月 |
| 14 | 程咬金 |
| 15 | 程咬银 |
| 16 | 程咬铜 |
| 17 | 程咬铁 |
+----+-----------+
2.多条件查询
#查询职位是teacher,并且薪资大于10000的所有name
mysql> select name from employee where post='teacher' and salary>10000;
+-------+
| name |
+-------+
| jack |
| lilei |
+-------+
3.关键字between、and
#查询薪资在10000到20000之间的所有name
mysql> select name, salary from employee where salary between 10000 and 20000;
+-----------+----------+
| name | salary |
+-----------+----------+
| hanmeimei | 10000.00 |
| 程咬金 | 20000.00 |
| 程咬银 | 19000.00 |
| 程咬铜 | 18000.00 |
| 程咬铁 | 17000.00 |
+-----------+----------+ #注意''是空字符串,不是null,所以查询post_comment是''时并不能查询到结果
mysql> select name, post_comment from employee where post_comment='';
Empty set (0.00 sec) 执行update再查询就有结果了
mysql> update employee set post_comment='' where id=2;
Query OK, 1 row affected (0.02 sec)
Rows matched: 1 Changed: 1 Warnings: 0 mysql> select name, post_comment from employee where post_comment='';
+------+--------------+
| name | post_comment |
+------+--------------+
| jack | |
+------+--------------+
4.关键字in、not in集合查询
mysql> select name, salary from employee where salary=10000 or salary=20000 or salary=30000;
+-----------+----------+
| name | salary |
+-----------+----------+
| lilei | 30000.00 |
| hanmeimei | 10000.00 |
| 程咬金 | 20000.00 |
+-----------+----------+ mysql> select name, salary from employee where salary in (10000,20000,30000);
+-----------+----------+
| name | salary |
+-----------+----------+
| lilei | 30000.00 |
| hanmeimei | 10000.00 |
| 程咬金 | 20000.00 |
+-----------+----------+ mysql> select name, salary from employee where salary not in (10000,20000,30000);
+-----------+------------+
| name | salary |
+-----------+------------+
| mike | 7300.33 |
| jack | 1000000.31 |
| tom | 8300.00 |
| lucy | 3500.00 |
| alice | 2100.00 |
| frank | 2000.00 |
| 小美 | 3000.13 |
| 小花 | 2000.35 |
| 小草 | 1000.37 |
| 小星 | 3000.29 |
| 小月 | 4000.33 |
| 程咬银 | 19000.00 |
| 程咬铜 | 18000.00 |
| 程咬铁 | 17000.00 |
+-----------+------------+
5.关键字LIKE模糊查询
%表示任意多个字符,_表示任意一个字符 mysql> select * from employee where name like '%m%';
+----+-----------+--------+-----+------------+---------+--------------+----------+--------+-----------+
| id | name | sex | age | hire_date | post | post_comment | salary | office | depart_id |
+----+-----------+--------+-----+------------+---------+--------------+----------+--------+-----------+
| 1 | mike | male | 28 | 2012-03-01 | teacher | NULL | 7300.33 | 401 | 1 |
| 3 | tom | male | 21 | 2013-03-05 | teacher | NULL | 8300.00 | 401 | 1 |
| 8 | hanmeimei | female | 28 | 2010-11-11 | teacher | NULL | 10000.00 | 401 | 1 |
+----+-----------+--------+-----+------------+---------+--------------+----------+--------+-----------+
3 rows in set (0.00 sec) mysql> select * from employee where name like 'm%';
+----+------+------+-----+------------+---------+--------------+---------+--------+-----------+
| id | name | sex | age | hire_date | post | post_comment | salary | office | depart_id |
+----+------+------+-----+------------+---------+--------------+---------+--------+-----------+
| 1 | mike | male | 28 | 2012-03-01 | teacher | NULL | 7300.33 | 401 | 1 |
+----+------+------+-----+------------+---------+--------------+---------+--------+-----------+
1 row in set (0.00 sec) mysql> select * from employee where name like 'to_';
+----+------+------+-----+------------+---------+--------------+---------+--------+-----------+
| id | name | sex | age | hire_date | post | post_comment | salary | office | depart_id |
+----+------+------+-----+------------+---------+--------------+---------+--------+-----------+
| 3 | tom | male | 21 | 2013-03-05 | teacher | NULL | 8300.00 | 401 | 1 |
+----+------+------+-----+------------+---------+--------------+---------+--------+-----------+
1 row in set (0.00 sec)
练习:
1. 查看岗位是teacher的员工姓名、年龄
2. 查看岗位是teacher且年龄大于25岁的员工姓名、年龄
3. 查看岗位是teacher且薪资在9000-10000范围内的员工姓名、年龄、薪资
4. 查看岗位描述不为NULL的员工信息
5. 查看岗位是teacher且薪资是10000或9000或30000的员工姓名、年龄、薪资
6. 查看岗位是teacher且薪资不是10000或9000或30000的员工姓名、年龄、薪资
7. 查看岗位是teacher且名字是t开头的员工姓名、年薪
对应的sql语句
mysql> select name,age from employee where post='teacher';
+-----------+-----+
| name | age |
+-----------+-----+
| mike | 28 |
| jack | 30 |
| tom | 21 |
| lucy | 25 |
| alice | 28 |
| frank | 18 |
| lilei | 28 |
| hanmeimei | 28 |
+-----------+-----+ mysql> select name,age from employee where post='teacher' and age>25;
+-----------+-----+
| name | age |
+-----------+-----+
| mike | 28 |
| jack | 30 |
| alice | 28 |
| lilei | 28 |
| hanmeimei | 28 |
+-----------+-----+ mysql> select name,age,salary from employee where post='teacher' and salary between 9000 and 10000;
+-----------+-----+----------+
| name | age | salary |
+-----------+-----+----------+
| hanmeimei | 28 | 10000.00 |
+-----------+-----+----------+ mysql> select * from employee where post_comment is not null;
+----+------+------+-----+------------+---------+--------------+------------+--------+-----------+
| id | name | sex | age | hire_date | post | post_comment | salary | office | depart_id |
+----+------+------+-----+------------+---------+--------------+------------+--------+-----------+
| 2 | jack | male | 30 | 2015-03-02 | teacher | | 1000000.31 | 401 | 1 |
+----+------+------+-----+------------+---------+--------------+------------+--------+-----------+ mysql> select name,age,salary from employee where salary in (9000, 10000,30000);
+-----------+-----+----------+
| name | age | salary |
+-----------+-----+----------+
| lilei | 28 | 30000.00 |
| hanmeimei | 28 | 10000.00 |
+-----------+-----+----------+ mysql> select name,age,salary from employee where salary not in (9000, 10000,30000);
+-----------+-----+------------+
| name | age | salary |
+-----------+-----+------------+
| mike | 28 | 7300.33 |
| jack | 30 | 1000000.31 |
| tom | 21 | 8300.00 |
| lucy | 25 | 3500.00 |
| alice | 28 | 2100.00 |
| frank | 18 | 2000.00 |
| 小美 | 48 | 3000.13 |
| 小花 | 38 | 2000.35 |
| 小草 | 18 | 1000.37 |
| 小星 | 18 | 3000.29 |
| 小月 | 28 | 4000.33 |
| 程咬金 | 18 | 20000.00 |
| 程咬银 | 18 | 19000.00 |
| 程咬铜 | 18 | 18000.00 |
| 程咬铁 | 18 | 17000.00 |
+-----------+-----+------------+ mysql> select name,salary from employee where post='teacher' and name like 't%';
+------+---------+
| name | salary |
+------+---------+
| tom | 8300.00 |
+------+---------+
4、group by分组查询
#1、首先明确一点:分组发生在where之后,即分组是基于where之后得到的记录而进行的
#2、分组指的是:将所有记录按照某个相同字段进行归类,比如针对员工信息表的职位分组,或者按照性别进行分组等
#3、为何要分组呢?
取每个部门的最高工资
取每个部门的员工数
取男人数和女人数
小窍门:‘每’这个字后面的字段,就是我们分组的依据
#4、大前提:
可以按照任意字段分组,但是分组完毕后,比如group by post,只能查看post字段,如果想查看组内信息,需要借助于聚合函数
当执行以下sql语句的时候,是以post字段查询了组中的第一条数据,没有任何意义,因为我们现在想查出当前组的多条记录。
#由于没有设置ONLY_FULL_GROUP_BY,于是也可以有结果,默认都是组内的第一条记录,但其实这是没有意义的
如果想分组,则必须要设置全局的sql的模式为ONLY_FULL_GROUP_BY
mysql> set global sql_mode='ONLY_FULL_GROUP_BY';
Query OK, 0 rows affected (0.00 sec) #查看MySQL 5.7默认的sql_mode如下:
mysql> select @@global.sql_mode;
+--------------------+
| @@global.sql_mode |
+--------------------+
| ONLY_FULL_GROUP_BY |
+--------------------+
1 row in set (0.00 sec) mysql> exit;#设置成功后,一定要退出,然后重新登录方可生效
Bye
继续验证通过group by分组之后,只能查看当前字段,如果想查看组内信息,需要借助于聚合函数
mysql> select * from emp group by post;# 报错
ERROR 1054 (42S22): Unknown column 'post' in 'group statement' mysql> select post from employee group by post;
+-----------------------------------------+
| post |
+-----------------------------------------+
| operation |
| sale |
| teacher |
+-----------------------------------------+
4 rows in set (0.00 sec)
5、聚合函数
max()求最大值
min()求最小值
avg()求平均值
sum() 求和
count() 求总个数
#强调:聚合函数聚合的是组的内容,若是没有分组,则默认一组
# 每个部门有多少个员工
mysql> select post, count(id) from employee group by post;
+-----------+-----------+
| post | count(id) |
+-----------+-----------+
| operation | 4 |
| sale | 5 |
| teacher | 8 |
+-----------+-----------+ # 每个部门的最高薪水
mysql> select post, max(salary) from employee group by post;
+-----------+-------------+
| post | max(salary) |
+-----------+-------------+
| operation | 20000.00 |
| sale | 4000.33 |
| teacher | 1000000.31 |
+-----------+-------------+ # 每个部门的最低薪水
select post,min(salary) from employee group by post;
# 每个部门的平均薪水
select post,avg(salary) from employee group by post;
# 每个部门的所有薪水
select post,sum(age) from employee group by post;
6、having过滤
HAVING与WHERE不一样的地方在于
#!!!执行优先级从高到低:where > group by > having
#1. Where 发生在分组group by之前,因而Where中可以有任意字段,但是绝对不能使用聚合函数。
#2. Having发生在分组group by之后,因而Having中可以使用分组的字段,无法直接取到其他字段,可以使用聚合函数
验证:
mysql> select * from employee where salary>1000000;
+----+------+------+-----+------------+---------+--------------+------------+--------+-----------+
| id | name | sex | age | hire_date | post | post_comment | salary | office | depart_id |
+----+------+------+-----+------------+---------+--------------+------------+--------+-----------+
| 2 | jack | male | 30 | 2015-03-02 | teacher | | 1000000.31 | 401 | 1 |
+----+------+------+-----+------------+---------+--------------+------------+--------+-----------+ mysql> select * from employee having salary>1000000;
ERROR 1463 (42000): Non-grouping field 'salary' is used in HAVING clause # 必须使用group by才能使用group_concat()函数,将所有的name值连接
mysql> select post,group_concat(name) from employee group by post having salary > 10000; ##错误,分组后无法直接取到salary字段
ERROR 1054 (42S22): Unknown column 'post' in 'field list'
小练习:
1. 查询各岗位内包含的员工个数小于2的岗位名、岗位内包含员工名字、个数
2. 查询各岗位平均薪资大于10000的岗位名、平均工资
3. 查询各岗位平均薪资大于10000且小于20000的岗位名、平均工资
#1、
mysql> select post, count(id), group_concat(name) from employee group by post;
+-----------+-----------+------------------------------------------------+
| post | count(id) | group_concat(name) |
+-----------+-----------+------------------------------------------------+
| operation | 4 | 程咬铁,程咬铜,程咬银,程咬金 |
| sale | 5 | 小月,小星,小草,小花,小美 |
| teacher | 8 | hanmeimei,lilei,frank,alice,lucy,tom,jack,mike |
+-----------+-----------+------------------------------------------------+ #2、
mysql> select post, avg(salary) from employee group by post having avg(salary) >10000;
+-----------+---------------+
| post | avg(salary) |
+-----------+---------------+
| operation | 18500.000000 |
| teacher | 132900.080000 | #3、
mysql> select post, avg(salary) from employee group by post having avg(salary) between 10000 and 20000;;
+-----------+--------------+
| post | avg(salary) |
+-----------+--------------+
| operation | 18500.000000 |
+-----------+--------------+
7、order by查询排序
按单列排序 asc升序(默认), desc(降序)
SELECT * FROM employee ORDER BY age;
SELECT * FROM employee ORDER BY age ASC;
SELECT * FROM employee ORDER BY age DESC;
按多列排序:先按照age升序排序,如果年纪相同,则按照id降序
SELECT * from employee
ORDER BY age ASC,
id DESC;
小练习:
1. 查询所有员工信息,先按照age升序排序,如果age相同则按照hire_date降序排序
2. 查询各岗位平均薪资大于10000的岗位名、平均工资,结果按平均薪资升序排列
3. 查询各岗位平均薪资大于10000的岗位名、平均工资,结果按平均薪资降序排列
#1、
mysql> select * from employee order by age, hire_date desc;
+----+-----------+--------+-----+------------+-----------+--------------+------------+--------+-----------+
| id | name | sex | age | hire_date | post | post_comment | salary | office | depart_id |
+----+-----------+--------+-----+------------+-----------+--------------+------------+--------+-----------+
| 6 | frank | female | 18 | 2018-02-11 | teacher | NULL | 2000.00 | 401 | 1 |
| 12 | 小星 | female | 18 | 2016-05-13 | sale | NULL | 3000.29 | 402 | 2 |
| 16 | 程咬铜 | male | 18 | 2015-04-11 | operation | NULL | 18000.00 | 403 | 3 |
| 17 | 程咬铁 | female | 18 | 2014-05-12 | operation | NULL | 17000.00 | 403 | 3 |
| 15 | 程咬银 | female | 18 | 2013-03-11 | operation | NULL | 19000.00 | 403 | 3 |
| 11 | 小草 | female | 18 | 2011-03-12 | sale | NULL | 1000.37 | 402 | 2 |
| 14 | 程咬金 | male | 18 | 1997-03-12 | operation | NULL | 20000.00 | 403 | 3 |
| 3 | tom | male | 21 | 2013-03-05 | teacher | NULL | 8300.00 | 401 | 1 |
| 4 | lucy | male | 25 | 2014-07-01 | teacher | NULL | 3500.00 | 401 | 1 |
| 13 | 小月 | female | 28 | 2017-01-27 | sale | NULL | 4000.33 | 402 | 2 |
| 5 | alice | male | 28 | 2012-11-01 | teacher | NULL | 2100.00 | 401 | 1 |
| 1 | mike | male | 28 | 2012-03-01 | teacher | NULL | 7300.33 | 401 | 1 |
| 7 | lilei | male | 28 | 2012-03-01 | teacher | NULL | 30000.00 | 401 | 1 |
| 8 | hanmeimei | female | 28 | 2010-11-11 | teacher | NULL | 10000.00 | 401 | 1 |
| 2 | jack | male | 30 | 2015-03-02 | teacher | | 1000000.31 | 401 | 1 |
| 10 | 小花 | female | 38 | 2010-11-01 | sale | NULL | 2000.35 | 402 | 2 |
| 9 | 小美 | female | 48 | 2015-03-11 | sale | NULL | 3000.13 | 402 | 2 |
+----+-----------+--------+-----+------------+-----------+--------------+------------+--------+-----------+
17 rows in set (0.00 sec) #2、
mysql> select post, avg(salary) from employee group by post having avg(salary)>10000 order by avg(salary);
+-----------+---------------+
| post | avg(salary) |
+-----------+---------------+
| operation | 18500.000000 |
| teacher | 132900.080000 |
+-----------+---------------+ #3、
mysql> select post, avg(salary) from employee group by post having avg(salary)>10000 order by avg(salary) desc;
+-----------+---------------+
| post | avg(salary) |
+-----------+---------------+
| teacher | 132900.080000 |
| operation | 18500.000000 |
+-----------+---------------+
8、limit限制查询的记录数量
示例:
SELECT * FROM employee ORDER BY salary DESC LIMIT 3; #默认初始位置为0
SELECT * FROM employee ORDER BY salary DESC LIMIT 0,5; #从第0开始,即先查询出第一条,然后包含这一条在内往后查5条
SELECT * FROM employee ORDER BY salary DESC LIMIT 5,5; #从第5开始,即先查询出第6条,然后包含这一条在内往后查5条
小练习:
分页显示,每页5条
mysql> select * from employee limit 0,5;
+----+-------+------+-----+------------+---------+--------------+------------+--------+-----------+
| id | name | sex | age | hire_date | post | post_comment | salary | office | depart_id |
+----+-------+------+-----+------------+---------+--------------+------------+--------+-----------+
| 1 | mike | male | 28 | 2012-03-01 | teacher | NULL | 7300.33 | 401 | 1 |
| 2 | jack | male | 30 | 2015-03-02 | teacher | | 1000000.31 | 401 | 1 |
| 3 | tom | male | 21 | 2013-03-05 | teacher | NULL | 8300.00 | 401 | 1 |
| 4 | lucy | male | 25 | 2014-07-01 | teacher | NULL | 3500.00 | 401 | 1 |
| 5 | alice | male | 28 | 2012-11-01 | teacher | NULL | 2100.00 | 401 | 1 |
+----+-------+------+-----+------------+---------+--------------+------------+--------+-----------+
5 rows in set (0.05 sec) mysql> select * from employee limit 5,5;
+----+-----------+--------+-----+------------+---------+--------------+----------+--------+-----------+
| id | name | sex | age | hire_date | post | post_comment | salary | office | depart_id |
+----+-----------+--------+-----+------------+---------+--------------+----------+--------+-----------+
| 6 | frank | female | 18 | 2018-02-11 | teacher | NULL | 2000.00 | 401 | 1 |
| 7 | lilei | male | 28 | 2012-03-01 | teacher | NULL | 30000.00 | 401 | 1 |
| 8 | hanmeimei | female | 28 | 2010-11-11 | teacher | NULL | 10000.00 | 401 | 1 |
| 9 | 小美 | female | 48 | 2015-03-11 | sale | NULL | 3000.13 | 402 | 2 |
| 10 | 小花 | female | 38 | 2010-11-01 | sale | NULL | 2000.35 | 402 | 2 |
+----+-----------+--------+-----+------------+---------+--------------+----------+--------+-----------+
5 rows in set (0.00 sec) mysql> select * from employee limit 10,5;
+----+-----------+--------+-----+------------+-----------+--------------+----------+--------+-----------+
| id | name | sex | age | hire_date | post | post_comment | salary | office | depart_id |
+----+-----------+--------+-----+------------+-----------+--------------+----------+--------+-----------+
| 11 | 小草 | female | 18 | 2011-03-12 | sale | NULL | 1000.37 | 402 | 2 |
| 12 | 小星 | female | 18 | 2016-05-13 | sale | NULL | 3000.29 | 402 | 2 |
| 13 | 小月 | female | 28 | 2017-01-27 | sale | NULL | 4000.33 | 402 | 2 |
| 14 | 程咬金 | male | 18 | 1997-03-12 | operation | NULL | 20000.00 | 403 | 3 |
| 15 | 程咬银 | female | 18 | 2013-03-11 | operation | NULL | 19000.00 | 403 | 3 |
+----+-----------+--------+-----+------------+-----------+--------------+----------+--------+-----------+
5 rows in set (0.00 sec) mysql> select * from employee limit 15,5;
+----+-----------+--------+-----+------------+-----------+--------------+----------+--------+-----------+
| id | name | sex | age | hire_date | post | post_comment | salary | office | depart_id |
+----+-----------+--------+-----+------------+-----------+--------------+----------+--------+-----------+
| 16 | 程咬铜 | male | 18 | 2015-04-11 | operation | NULL | 18000.00 | 403 | 3 |
| 17 | 程咬铁 | female | 18 | 2014-05-12 | operation | NULL | 17000.00 | 403 | 3 |
+----+-----------+--------+-----+------------+-----------+--------------+----------+--------+-----------+
2 rows in set (0.00 sec)
day06-单表查询的更多相关文章
- Mysql常用表操作 | 单表查询
160905 常用表操作 1. mysql -u root -p 回车 输入密码 2. 显示数据库列表 show databases 3. 进入某数据库 use database data ...
- 【T-SQL基础】01.单表查询-几道sql查询题
概述: 本系列[T-SQL基础]主要是针对T-SQL基础的总结. [T-SQL基础]01.单表查询-几道sql查询题 [T-SQL基础]02.联接查询 [T-SQL基础]03.子查询 [T-SQL基础 ...
- python实现简易数据库之二——单表查询和top N实现
上一篇中,介绍了我们的存储和索引建立过程,这篇将介绍SQL查询.单表查询和TOPN实现. 一.SQL解析 正规的sql解析是用语法分析器,但是我找了好久,只知道可以用YACC.BISON等,sqlit ...
- mysql单表查询&&多表查询(职员表14+9)
dept(deptno,dname,loc) emp(empno,ename,job,mgr,hiredate,sal,COMM,deptno) salgrade(grade,losal,hisal) ...
- SQLServer学习笔记<>.基础知识,一些基本命令,单表查询(null top用法,with ties附加属性,over开窗函数),排名函数
Sqlserver基础知识 (1)创建数据库 创建数据库有两种方式,手动创建和编写sql脚本创建,在这里我采用脚本的方式创建一个名称为TSQLFundamentals2008的数据库.脚本如下: ...
- T_SQL查询语句(一): 单表查询
############################################ 查询语句--SELECT ########################################## ...
- 65、django之模型层(model)--添加、单表查询、修改基础
上篇带大家简单做了一下图书表的创建.简单的查看和删除,今天会先简单介绍添加和修改,因为添加和修改与删除一样都很简单,本篇会相对多介绍一点单表查询,大家都知道数据库中查询是最重要的一部分,毕竟无论是修改 ...
- SQL基本查询_单表查询(实验二)
SQL基本查询_单表查询(实验二) 查询目标表结构及数据 emp empno ename job hiedate sal comn deptno 1007 马明 内勤 1992-6-12 4000 2 ...
- Hibernate学习---单表查询
我们都知道SQL是非常强大的,为什么这么说呢?相信学过数据库原理的同学们都深有体会,SQL语句变化无穷,好毫不夸张的说可以实现任意符合我们需要的数据库操作,既然前面讲到Hibernate非常强大,所以 ...
- springdata 查询思路:基本的单表查询方法(id,sort) ---->较复杂的单表查询(注解方式,原生sql)--->实现继承类---->复杂的多表联合查询 onetomany
springdata 查询思路:基本的单表查询方法(id,sort) ---->较复杂的单表查询(注解方式,原生sql)--->实现继承类---->复杂的多表联合查询 onetoma ...
随机推荐
- load() 方法
jQuery ajax - load() 方法 $("button").click(function(){ $("div").load('demo_ajax_l ...
- 解决wordpress文章归档和分类目录小工具标题重复问题
最近更新了wordpress,发现更新后小工具中的文章归档和分类目录出现了标题重复,经检查,是部分主题下,主题的代码已经输出了标题,而wordpress的代码又再次输出了一次.于是我们需要删除word ...
- studio之mac快捷键
2. SouceTree忽略文件: .gitignore文件编辑: 忽略指定文件:直接写文件名 忽略文件夹:直接写文件夹路径,例:target或者target/ -> 忽略target下的所有 ...
- ArcEngine 创建空间参考设置默认域
ISpatialReferenceFactory3 spatialReferenceFactory = new SpatialReferenceEnvironmentClass(); outSR = ...
- Git配置SSH Key
最近看到很多人在配置Git时,遇到很问题,网上教程千篇一律.这儿自己单独记录一份. Git配置SSH Key 1.检查本机是否有ssh key设置,切换到.ssh目录 $ cd ~/.ssh 或cd ...
- OpenJudge 求重要逆序对数
https://blog.csdn.net/mrvector/article/details/81090165 [题解] 方法与求逆序对的个数类似,用归并排序分治求解.不同之处在于添加了一个虚拟指针p ...
- Django跨域问题
相关博客地址 同源策略与Jsonp 同源策略 同源策略(Same origin policy)是一种约定,它是浏览器最核心也最基本的安全功能,如果缺少了同源策略,则浏览器的正常功能可能都会受到影响.可 ...
- jQuery实现点击控制左右两边元素挤压显示效果
该功能实现的是:分左.右两边布局,左边div默认展开,左边div中有一个元素,点击实现左边div隐藏,右边div挤压过来:再点击实现左边显示,右边挤过去. 一.HTML代码: <div clas ...
- Python: json模块实例详解
ref:https://www.jianshu.com/p/e29611244810 https://www.cnblogs.com/qq78292959/p/3467937.html https:/ ...
- is和==的区别
is 比较的是内存地址 == 比较的是内容 当两个变量指向同一个对象的时候. is是True, ==也是True