我就废话不多说了,大家还是直接看代码吧~
select count(s.*) from ( select *, row_number() over (partition by fee_date order by fee_date) as gr from new_order where news_id='novel' and order_status='2' ) s where s.gr = 1 SELECT count(DISTINCT fee_date) as dis from new_order where news_id='novel' and order_status='2'
这两个SQL执行所得到的数据是一样的!
工具:postgreSQL
1.我们要清楚,sql的执行顺序:
from语句->where语句->group by语句->having语句->order by语句->select 语句
2.row_number()分析函数
说明:返回结果集分区内行的序列号,每个分区的第一行从 1 开始。
语法:ROW_NUMBER () OVER ([ <partition_by_clause>]<order_by_clause> )
备注:ORDERBY 子句可确定在特定分区中为行分配唯一 ROW_NUMBER 的顺序。
参数:<partition_by_clause> :将FROM 子句生成的结果集划入应用了 ROW_NUMBER 函数的分区。
<order_by_clause>:确定将 ROW_NUMBER 值分配给分区中行的顺序。
返回类型:bigint 。
row_number()从1开始,为每一条分组记录返回一个数字
select *, row_number() over (order by fee_date) from new_order
先把 fee_date 升序排列,再为升序以后的每条记录返回一个序号
select *, row_number() over (partition by fee_date order by fee_date) as gr from new_order
表示根据fee_date分组,在分组内部根据 fee_date排序,而此函数计算的值就表示每组内部排序后的顺序编号(组内连续的唯一的)
2.distinct
语法:
SELECT DISTINCT 列名称 FROM 表名称
distinct这个关键字用来过滤掉多余的重复记录只保留一条
select DISTINCT fee_date from new_order
select DISTINCT fee_date,order_status from new_order
从结果可以看出,是根据“fee_date+order_status”来去重复数据的,distinct同时作用在了fee_date和order_status上
SELECT count(DISTINCT fee_date) as dis from new_order where news_id='novel' and order_status='2'
select id,distinct fee_date from new_order ; –会提示错误,因为distinct必须放在开头
distinct语句中select显示的字段只能是distinct指定的字段,其他字段是不可能出现的
补充:PostgreSQL ROW_NUMBER() OVER()
我就废话不多说了,大家还是直接看代码吧~
SELECT * FROM ( SELECT tt.s_ci s_ci, sm.ci, -- getdistance ( -- tt.longitude, -- tt.latitude, -- sm.longitude, -- sm.latitude -- ) distance, ROW_NUMBER () OVER ( PARTITION BY tt.s_ci ORDER BY getdistance ( tt.longitude, tt.latitude, sm.longitude, sm.latitude ) ) rn FROM sm_cl_location sm INNER JOIN ( SELECT s_ci, longitude, latitude, n3_pci, n3_earfcn FROM plan_ott_data WHERE 1 = 1 AND ( s_ci = '460-00-1012286-2' OR s_ci = '460-00-25514-130' ) AND rpt_time BETWEEN '2018-04-30' AND '2018-05-29' ) tt ON sm.pci = tt.n3_pci AND sm.hannel_number = tt.n3_earfcn ) T WHERE T .rn BETWEEN 1 and 3
语法:
ROW_NUMBER() OVER( [ PRITITION BY col1] ORDER BY col2[ DESC ] )
解释:
ROW_NUMBER()为返回的记录定义个行编号, PARTITION BY col1 是根据col1分组,ORDER BY col2[ DESC ]是根据col2进行排序。
举例:
postgres=# create table student(id serial,name character varying,course character varying,score integer); CREATE TABLE postgres=# postgres=# \d student Table "public.student" Column | Type | Modifiers --------+-------------------+---------------------------------------------- id | integer | not null default nextval('student_id_seq'::regclass) name | character varying | course | character varying | score | integer |
insert into student (name,course,score) values('周润发','语文',89); insert into student (name,course,score) values('周润发','数学',99); insert into student (name,course,score) values('周润发','外语',67); insert into student (name,course,score) values('周润发','物理',77); insert into student (name,course,score) values('周润发','化学',87); insert into student (name,course,score) values('周星驰','语文',91); insert into student (name,course,score) values('周星驰','数学',81); insert into student (name,course,score) values('周星驰','外语',88); insert into student (name,course,score) values('周星驰','物理',68); insert into student (name,course,score) values('周星驰','化学',83); insert into student (name,course,score) values('黎明','语文',85); insert into student (name,course,score) values('黎明','数学',65); insert into student (name,course,score) values('黎明','外语',95); insert into student (name,course,score) values('黎明','物理',90); insert into student (name,course,score) values('黎明','化学',78);
1. 根据分数排序
postgres=# select *,row_number() over(order by score desc)rn from student; id | name | course | score | rn ----+--------+--------+-------+---- 2 | 周润发 | 数学 | 99 | 1 13 | 黎明 | 外语 | 95 | 2 6 | 周星驰 | 语文 | 91 | 3 14 | 黎明 | 物理 | 90 | 4 1 | 周润发 | 语文 | 89 | 5 8 | 周星驰 | 外语 | 88 | 6 5 | 周润发 | 化学 | 87 | 7 11 | 黎明 | 语文 | 85 | 8 10 | 周星驰 | 化学 | 83 | 9 7 | 周星驰 | 数学 | 81 | 10 15 | 黎明 | 化学 | 78 | 11 4 | 周润发 | 物理 | 77 | 12 9 | 周星驰 | 物理 | 68 | 13 3 | 周润发 | 外语 | 67 | 14 12 | 黎明 | 数学 | 65 | 15 (15 rows)
rn是给我们的一个排序。
2. 根据科目分组,按分数排序
postgres=# select *,row_number() over(partition by course order by score desc)rn from student; id | name | course | score | rn ----+--------+--------+-------+---- 5 | 周润发 | 化学 | 87 | 1 10 | 周星驰 | 化学 | 83 | 2 15 | 黎明 | 化学 | 78 | 3 13 | 黎明 | 外语 | 95 | 1 8 | 周星驰 | 外语 | 88 | 2 3 | 周润发 | 外语 | 67 | 3 2 | 周润发 | 数学 | 99 | 1 7 | 周星驰 | 数学 | 81 | 2 12 | 黎明 | 数学 | 65 | 3 14 | 黎明 | 物理 | 90 | 1 4 | 周润发 | 物理 | 77 | 2 9 | 周星驰 | 物理 | 68 | 3 6 | 周星驰 | 语文 | 91 | 1 1 | 周润发 | 语文 | 89 | 2 11 | 黎明 | 语文 | 85 | 3 (15 rows)
3. 获取每个科目的最高分
postgres=# select * from(select *,row_number() over(partition by course order by score desc)rn from student)t where rn=1; id | name | course | score | rn ----+--------+--------+-------+---- 5 | 周润发 | 化学 | 87 | 1 13 | 黎明 | 外语 | 95 | 1 2 | 周润发 | 数学 | 99 | 1 14 | 黎明 | 物理 | 90 | 1 6 | 周星驰 | 语文 | 91 | 1 (5 rows)
4. 每个科目的最低分也是一样的
postgres=# select * from(select *,row_number() over(partition by course order by score)rn from student)t where rn=1; id | name | course | score | rn ----+--------+--------+-------+---- 15 | 黎明 | 化学 | 78 | 1 3 | 周润发 | 外语 | 67 | 1 12 | 黎明 | 数学 | 65 | 1 9 | 周星驰 | 物理 | 68 | 1 11 | 黎明 | 语文 | 85 | 1 (5 rows)
只要在根据科目排序的时候按低到高顺序排列就好了。
以上为个人经验,希望能给大家一个参考,也希望大家多多支持。如有错误或未考虑完全的地方,望不吝赐教。
《魔兽世界》大逃杀!60人新游玩模式《强袭风暴》3月21日上线
暴雪近日发布了《魔兽世界》10.2.6 更新内容,新游玩模式《强袭风暴》即将于3月21 日在亚服上线,届时玩家将前往阿拉希高地展开一场 60 人大逃杀对战。
艾泽拉斯的冒险者已经征服了艾泽拉斯的大地及遥远的彼岸。他们在对抗世界上最致命的敌人时展现出过人的手腕,并且成功阻止终结宇宙等级的威胁。当他们在为即将于《魔兽世界》资料片《地心之战》中来袭的萨拉塔斯势力做战斗准备时,他们还需要在熟悉的阿拉希高地面对一个全新的敌人──那就是彼此。在《巨龙崛起》10.2.6 更新的《强袭风暴》中,玩家将会进入一个全新的海盗主题大逃杀式限时活动,其中包含极高的风险和史诗级的奖励。
《强袭风暴》不是普通的战场,作为一个独立于主游戏之外的活动,玩家可以用大逃杀的风格来体验《魔兽世界》,不分职业、不分装备(除了你在赛局中捡到的),光是技巧和战略的强弱之分就能决定出谁才是能坚持到最后的赢家。本次活动将会开放单人和双人模式,玩家在加入海盗主题的预赛大厅区域前,可以从强袭风暴角色画面新增好友。游玩游戏将可以累计名望轨迹,《巨龙崛起》和《魔兽世界:巫妖王之怒 经典版》的玩家都可以获得奖励。
更新日志
- 小骆驼-《草原狼2(蓝光CD)》[原抓WAV+CUE]
- 群星《欢迎来到我身边 电影原声专辑》[320K/MP3][105.02MB]
- 群星《欢迎来到我身边 电影原声专辑》[FLAC/分轨][480.9MB]
- 雷婷《梦里蓝天HQⅡ》 2023头版限量编号低速原抓[WAV+CUE][463M]
- 群星《2024好听新歌42》AI调整音效【WAV分轨】
- 王思雨-《思念陪着鸿雁飞》WAV
- 王思雨《喜马拉雅HQ》头版限量编号[WAV+CUE]
- 李健《无时无刻》[WAV+CUE][590M]
- 陈奕迅《酝酿》[WAV分轨][502M]
- 卓依婷《化蝶》2CD[WAV+CUE][1.1G]
- 群星《吉他王(黑胶CD)》[WAV+CUE]
- 齐秦《穿乐(穿越)》[WAV+CUE]
- 发烧珍品《数位CD音响测试-动向效果(九)》【WAV+CUE】
- 邝美云《邝美云精装歌集》[DSF][1.6G]
- 吕方《爱一回伤一回》[WAV+CUE][454M]