我在postgresql数据库中有一个客户事务表,其列如下:
transactionId (primary)| customerId(int8)| transactionDate (timestamp)
1 2 2020-02-14
2 3 2020-03-08
3 1 2020-02-06 //ignore
4 2 2020-02-10 // ignore
5 2 2020-03-24
6 2 2020-03-25
7 2 2020-02-12 //ignore (date < 13/02/2020)
我需要生成以下报告,其中包括:
自2020年2月13日以来,他们所做的每一笔交易的时间戳分为“transaction1”、“transaction2”等
记录也应该包括customerid。
如何构建查询以生成如下所示的报表?
CustomerId| TransactionNo | TransactionDate
2 1 2020-02-14
2 2 2020-03-24
2 3 2020-03-25
3 1 2020-03-08
select
customerId,
transactionDate
from myTable where transactionDate > '2020-02-13'
order by
customerId, transactionDate
如何添加事务号,如1、2、3?
1条答案
按热度按时间gdx19jrr1#
窗口函数可以帮助您实现这种格式的重新排序事务编号
rank函数将提供一组有序的数字,即分区上的1、2、3(即逻辑分组方式,您仍将拥有数据集中的每条记录)customerid和ordered by transactiondate。
从而提供