使用order by 语句来实现排序。
排序可针对一个或多个字段。
语法:
select column1,column2,…… from table_name order by column1,column2,…… asc|desc;
ASC是按照升序进行排序的,是默认的排序方式,即ASC可以省略。select语句中如果没有指定具体的排序方式,则默认按ASC方式进行排序。
DESC是按降序方式进行排列。当然order by前面也可以使用where子句对查询结果进一步过滤。
创建一张数据表
create table info (id int(10) primary key not null auto_increment,name varchar(20) not null,score decimal(5,2),address char(40) ,hobby varchar(10));
insert into info values(1,'liuyi',80,'beijing','2');
insert into info values(2,'wangwu',90,'shenzheng','2');
insert into info values(3,'lisi',60,'shanghai','4');
insert into info values(4,'tinqi',99,'nanjing','5');
insert into info values(5,'jiaoshou',100,'laowo','3');
insert into info values(6,'xiaoming',10,'zhenjiang','3');
select * from info
select name,score from info order by score [asc];
#按分数排序,默认不指定则为升序排列asc
select name,score from info order by score desc;
#按降序排列使用desc
原则:order by之后的参数,使用“."分割,优先级是按先后顺序而定,例如:
select id,name,hobby from info order by hobby desc,id asc;
#优先降序排列hobby字段,然后正序排列id字段
小结:order by之后的第一个参数只有在出现相同的数值,第二个字段才有意义。
or/and —— 或/且
select * from info where score > 70 and score <=90;
select * from info where score >70 or score <=90;
嵌套/多条件
select * from info where score > 70 or (score > 75 and score <90);
select distinct 字段 from 表名;
例:
select distinct hobby from info;
1.distinct必须放在最开头
2.distinct只能使用需要去重的字段进行操作。也就是说distinct了name,hobby两个字段,后面想根据id进行排序是不可以的,因为只能name,hobby两个字段进行操作。
3.distinct去重多个字段时,含义是几个字段同时重复才会被过滤。
通过SQL查询出来的结果,还可以对其进行分组,使用group by 语句来实现,group by通常都是结合聚合函数一起使用的,常用的聚合函数包括:计数(count),求和(sum),求平均数