概述

数据库中的数据直接呈现出来一般不是我们想要的,所以我们上两节演示了如何对数据进行过滤的方法。除了对数据进行过滤,

我们可能还需要对数据进行排序,比如想从列表中了解消费最高的项,就可能需要对金额字段做降序排序,想看年龄从小到大的分布情况,就可能需要对user表的age字段进行升序排序。

也可能需要对数据进行限制,比如我们需要对付款的1~10,11~20,21~30 名的用户分别赠予不同的礼品,这时候对数据的限制就很有用了。

备注:下面脚本中[]包含的表示可选,| 分隔符表示可选其一。

数据排序 order by

语法格式如下:

1、需要排序的字段跟在order by之后;

2、asc 和 desc表示排序的规则,asc:升序,desc:降序,默认为升序 asc;

3、排序可以指定多次字段,多字段排序之间用逗号隔开。

4、多字段排序中,越靠前优先级越高,下面中cname1优先排序,当cname1等值的时候,cname2开始排序,直至所有字段都排序完。

select cname from tname order by cname1 [asc|desc],cname2 [asc|desc]...;

举个例子,在销售额中通按照交易的订单进行金额额度降序的方式显示:

mysql> select * from t_order;+---------+---------+---------+-------+| orderid | account | amount | goods |+---------+---------+---------+-------+|    8 | brand  | 52.2  |   2 ||    9 | hen   | 1752.02 |   7 ||   10 | helyn  | 88.5  |   4 ||   11 | sol   | 1007.9 |  11 ||   12 | diny  | 12   |   1 ||   13 | weng  | 52.2  |   5 ||   14 | sally  | 99.71  |   9 |+---------+---------+---------+-------+7 rows in setmysql> select * from t_order order by amount desc;+---------+---------+---------+-------+| orderid | account | amount | goods |+---------+---------+---------+-------+|    9 | hen   | 1752.02 |   7 ||   11 | sol   | 1007.9 |  11 ||   14 | sally  | 99.71  |   9 ||   10 | helyn  | 88.5  |   4 ||    8 | brand  | 52.2  |   2 ||   13 | weng  | 52.2  |   5 ||   12 | diny  | 12   |   1 |+---------+---------+---------+-------+7 rows in set

多个字段排序用逗号隔开,优先级从左到右逐次递减,如下图,如果金额一致,则按照购买商品数量从多到少排序:

mysql> select * from t_order order by amount desc,goods desc;+---------+---------+---------+-------+| orderid | account | amount | goods |+---------+---------+---------+-------+|    9 | hen   | 1752.02 |   7 ||   11 | sol   | 1007.9 |  11 ||   14 | sally  | 99.71  |   9 ||   10 | helyn  | 88.5  |   4 ||   13 | weng  | 52.2  |   5 ||    8 | brand  | 52.2  |   2 ||   12 | diny  | 12   |   1 |+---------+---------+---------+-------+7 rows in set

按照别名排序或者做条件查询的目的都是为了简化代码,方便使用,别名可以是英文,也可以是中文:

mysql> select account as ac,amount as am,goods as gd from t_order order by am,gd desc;+-------+---------+----+| ac  | am   | gd |+-------+---------+----+| diny | 12   | 1 || weng | 52.2  | 5 || brand | 52.2  | 2 || helyn | 88.5  | 4 || sally | 99.71  | 9 || sol  | 1007.9 | 11 || hen  | 1752.02 | 7 |+-------+---------+----+7 rows in set

下面使用了abs取绝对值函数,所以在 am字段降序排序中,-99.99 排在 99.71之上。

mysql> select * from t_order;+---------+---------+---------+-------+| orderid | account | amount | goods |+---------+---------+---------+-------+|    8 | brand  | 52.2  |   2 ||    9 | hen   | 1752.02 |   7 ||   10 | helyn  | 88.5  |   4 ||   11 | sol   | 1007.9 |  11 ||   12 | diny  | 12   |   1 ||   13 | weng  | 52.2  |   5 ||   14 | sally  | 99.71  |   9 ||   15 | brand1 | -99.99 |   5 |+---------+---------+---------+-------+8 rows in setmysql> select account as ac,amount as am,goods as gd from t_order order by abs(am) desc;+--------+---------+----+| ac   | am   | gd |+--------+---------+----+| hen  | 1752.02 | 7 || sol  | 1007.9 | 11 || brand1 | -99.99 | 5 || sally | 99.71  | 9 || helyn | 88.5  | 4 || brand | 52.2  | 2 || weng  | 52.2  | 5 || diny  | 12   | 1 |+--------+---------+----+8 rows in set

order 在 where 条件之后,根据where已经过滤好的数据再进行排序。下面是过滤出购买金额>80 且 购买数量>5的数据,并且按照价格降序排序。

mysql> select * from t_order;+---------+---------+---------+-------+| orderid | account | amount | goods |+---------+---------+---------+-------+|    8 | brand  | 52.2  |   2 ||    9 | hen   | 1752.02 |   7 ||   10 | helyn  | 88.5  |   4 ||   11 | sol   | 1007.9 |  11 ||   12 | diny  | 12   |   1 ||   13 | weng  | 52.2  |   5 ||   14 | sally  | 99.71  |   9 ||   15 | brand1 | -99.99 |   5 |+---------+---------+---------+-------+8 rows in setmysql> select * from t_order where amount>80 and goods>5 order by amount desc;+---------+---------+---------+-------+| orderid | account | amount | goods |+---------+---------+---------+-------+|    9 | hen   | 1752.02 |   7 ||   11 | sol   | 1007.9 |  11 ||   14 | sally  | 99.71  |   9 |+---------+---------+---------+-------+

很多时候我们过滤出符合要求的数据之后,还需要得到这些数据中的某一个具体区间,比如对付款超过1000的用户的第1~10,11~20,21~30 名分别赠予不同的礼品,这时候就要使用limit操作了。

limit用来限制select查询返回的数据,常用于数据排行或者分页等情况。

语法格式如下:

select cname from tname limit [offset,] count;

2、count:跳过偏移量offset之后开始取的数据行数,有count行。

3、limit中offset和count的值不能用表达式。

获取前n条记录

如下图,limit n 和 limit 0,n 是一致的:

mysql> select * from t_order;+---------+---------+---------+-------+| orderid | account | amount | goods |+---------+---------+---------+-------+|    8 | brand  | 52.2  |   2 ||    9 | hen   | 1752.02 |   7 ||   10 | helyn  | 88.5  |   4 ||   11 | sol   | 1007.9 |  11 ||   12 | diny  | 12   |   1 ||   13 | weng  | 52.2  |   5 ||   14 | sally  | 99.71  |   9 ||   15 | brand1 | -99.99 |   5 |+---------+---------+---------+-------+8 rows in setmysql> select * from t_order limit 2;+---------+---------+---------+-------+| orderid | account | amount | goods |+---------+---------+---------+-------+|    8 | brand  | 52.2  |   2 ||    9 | hen   | 1752.02 |   7 |+---------+---------+---------+-------+2 rows in setmysql> select * from t_order limit 0,2;+---------+---------+---------+-------+| orderid | account | amount | goods |+---------+---------+---------+-------+|    8 | brand  | 52.2  |   2 ||    9 | hen   | 1752.02 |   7 |+---------+---------+---------+-------+2 rows in set

这边我们获取支付金额中最大和最小的的一条记录。可以先使用 order 条件进行排序,然后limit 第1条记录即可:

 mysql> select * from t_order; +---------+---------+---------+-------+ | orderid | account | amount | goods | +---------+---------+---------+-------+ |    8 | brand  | 52.2  |   2 | |    9 | hen   | 1752.02 |   7 | |   10 | helyn  | 88.5  |   4 | |   11 | sol   | 1007.9 |  11 | |   12 | diny  | 12   |   1 | |   13 | weng  | 52.2  |   5 | |   14 | sally  | 99.71  |   9 | |   15 | brand1 | -99.99 |   5 | +---------+---------+---------+-------+ 8 rows in set mysql> select * from t_order where amount>0 order by amount desc limit 1; +---------+---------+---------+-------+ | orderid | account | amount | goods | +---------+---------+---------+-------+ |    9 | hen   | 1752.02 |   7 | +---------+---------+---------+-------+ 1 row in set mysql> select * from t_order where amount>0 order by amount asc limit 1; +---------+---------+--------+-------+ | orderid | account | amount | goods | +---------+---------+--------+-------+ |   12 | diny  | 12   |   1 | +---------+---------+--------+-------+ 1 row in set

更多相关文章

  1. MySQL系列多表连接查询92及99语法示例详解教程
  2. Linux下MYSQL 5.7 找回root密码的问题(亲测可用)
  3. MySQL 什么时候使用INNER JOIN 或 LEFT JOIN
  4. android从服务器下载文件(php+apache+win7+MySql)
  5. 【有图】android通过jdbc连接mysql(附文件)
  6. android分页查询获取系统联系人信息
  7. Android入门教程(三十一)------SQLite分页读取
  8. android ListView的分段显示、分页显示(附源码)
  9. android左右滑动加载分页以及动态加载数据

随机推荐

  1. Linux服务列表(CentOS)
  2. 【Linux】CentOS7上解压zip需要安装uzip
  3. libpcap丢包原理分析及Fedora 9 内核2.6.
  4. linux下启动、关闭oracle服务
  5. 如何在虚拟机中安装kali linux
  6. CentOS 7下配置IP地址
  7. 心中的完美的E680I[文字]
  8. zynq PS侧DMA驱动
  9. 清华大学出版社“抄袭事件”回放
  10. shell编程与应用自测题(出自linux面试题)