desc
数据排序 asc、desc
1、单一字段排序order by 字段名称
作用: 通过哪个或哪些字段进行排序
含义: 排序采用 order by 子句,order by 后面跟上排序字段,排序字段可以放多个,多个采用逗号间隔,order by默认采用升序(asc),如果存在 where 子句,那么 order by 必须放到where 语句后面。
(1)、按照薪水由小到大排序(系统默认由小到大)
例如: select ename,sal from emp order by sal;
(2)、取得job 为 MANAGER 的员工,按照薪水由小到大排序(系统默
认由小到大)
例如: select ename,job,sal from emp where job = ”MANAGER”order by sal;
如果包含 where 语句 order by 必须放到 where 后面,如果没有 where 语句 order by 放到表的后面;
(3)、以下询法是错误的:
- select * from emp order by sal where
- select * from emp order by sal where job = ‘MANAGER’;
2、手动指定字段排序
(1)、手动指定按照薪水由小到大排序(升序关键字 asc)
例如: select ename,sal from emp order by sal asc;
(2)、手动指定按照薪水由大到小排序(降序关键字desc)
例如: select ename,sal from emp order by sal desc;
3、多个字段排序
(1)、按照 job 和薪水倒序排序
例如: select ename,job,ename from emp order by job desc,sal desc;
注意: 如果采用多个字段排序,如果根据第一个字段排序重复了,会根据第二个字段排序;
4、使用字段位置排序
(1)、按照薪水升序排序(不建议采用此方法,采用数字含义不明确,可读性不强,程序不健壮)
select * from emp order by 6;
相关阅读
背景:今天在做开发过程中,报了一个很莫名其妙的错误,错误提示信息如下:SQLSTATE[HY000]: General error: 1366 Incorrect integer v
Mysql配置文件my.cnf 安装了mysql没有my.cnf文件的情况 1、可以把mysql的示例配置文件,如my-medium.cnf拷贝到/etc/my.cnf,再去修改
问题: mysql:1130 is not allowed to connect to this MariaDB server(没有远程登录权限,注:这里的MariaDB 是MySQL的延伸版)一、开启远
目标:数据库A中的表可以join数据库B中的表。 环境:Windows系统,免安装版mysql-5.7.22。 需求:数据库中表很多,将表按业务划分到不同的
1.笛卡儿积数学理解 A={2,3} ;B= {0,2,4} AxB = {(2,0),(3,0),(2,2),(3,2),(2,4),(3,4)},则AxB的结果集既是笛卡儿积; 但其不满足交换率