Excel
-
过滤
使用筛选器,通过筛选器,按照条件(字段名/字段值)可对每列数据进行筛选
-
排序
对每列数字进行升序或降序排列,字符可按照首字母顺序排序
-
统计
更具要求对每列数据进行统计预算
SQLyog数据库
-
查询语句
select 字段名1,字段名2 from 表名;
select * from 表名; -
筛选语句
select * from 表名 where 字段名 = 字段值
select * from 表名 where 字段名 > 字段值
select * from 表名 where 字段名 < 字段值
select * from 表名 where 字段名 <> 字段值
select * from 表名 where 字段名 like '%字段值'
like(模糊查询)
-
排序
select * from 表名 order by 字段名1 desc,字段名2asc;...
-
统计
计数 select count(*) from 表名;
求和 select sum(字段名) from 表名;
最大值 select max(字段名) from 表名;
最小值 select min(字段名) from 表名;
平均值 select avg(字段名) from 表名;
- 关键字
查询显示-select
从哪张表-from
筛选条件-where
排序-order by
升序-asc
降序-desc -
条件运算符
-通配符
-统计函数
求和-sum()
平均值-avg()
最大值-max()
最小值-min()
计数-count()