mysql 常用sql语句 二
Posted 穷开心y
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql 常用sql语句 二相关的知识,希望对你有一定的参考价值。
- mysql 查询
- 基本查询
select * from users;
- 去重
select distinct(name),high from users order by high desc; ## 注意 distinct必须放在第一位,desc降序,distinct不会对结果进行排序
select * from users group by name;
- 过滤
select * from users limit 3 order by desc;
- 聚合函数
以上是关于mysql 常用sql语句 二的主要内容,如果未能解决你的问题,请参考以下文章