如何在T-SQL中编写此窗口查询?

huangapple go评论54阅读模式
英文:

How to write this windowing query in T-SQL?

问题

以下是您要翻译的内容:

"我有一些表格用来存储飞行数据:"

CREATE TABLE [dbo].[wings]
(
	[Id] [int] NOT NULL,
	[Manufacturer] [varchar](50) NOT NULL,
	[Model] [varchar](50) NULL,
	[Size] [decimal](3, 1) NULL,
	[hoursWhenBought] [tinyint] NULL,
	[purchaseDate] [date] NULL,

    CONSTRAINT [PK__wings__3214EC07E42B45BC] 
        PRIMARY KEY CLUSTERED ([Id] ASC)
)

CREATE TABLE [dbo].[wingServiceHistory]
(
	[wingId] [int] NOT NULL,
	[date] [date] NOT NULL,
	[servicedBy] [varchar](100) NOT NULL,
	[comments] [varchar](200) NULL,

    CONSTRAINT [PK_wingServiceHistory] 
        PRIMARY KEY CLUSTERED ([wingId] ASC, [date] ASC)
)

CREATE TABLE [dbo].[flights]
(
	[Id] [int] NOT NULL,
	[Date] [date] NOT NULL,
	[TakeOffTime] [time](7) NOT NULL,
	[LandingTime] [time](7) NOT NULL,
	[WingId] [int] NULL
)

CREATE CLUSTERED INDEX [ClusteredIndex-Date] 
ON [dbo].[flights] ([Date] ASC)

-- 示例数据
INSERT INTO [dbo].[flights] ([Id], [Date], [TakeOffTime], [LandingTime], [WingId]) 
VALUES (1, CAST(N'2019-09-02' AS Date), CAST(N'10:00:00' AS Time), CAST(N'12:00:00' AS Time), 3)
INSERT INTO [dbo].[flights] ([Id], [Date], [TakeOffTime], [LandingTime], [WingId]) 
VALUES (2, CAST(N'2019-09-03' AS Date), CAST(N'09:30:00' AS Time), CAST(N'12:30:00' AS Time), 3)
INSERT INTO [dbo].[flights] ([Id], [Date], [TakeOffTime], [LandingTime], [WingId]) 
VALUES (3, CAST(N'2020-05-05' AS Date), CAST(N'07:00:00' AS Time), CAST(N'08:45:00' AS Time), 3)
INSERT INTO [dbo].[flights] ([Id], [Date], [TakeOffTime], [LandingTime], [WingId]) 
VALUES (4, CAST(N'2020-09-28' AS Date), CAST(N'13:00:00' AS Time), CAST(N'15:00:00' AS Time), 3)
INSERT INTO [dbo].[flights] ([Id], [Date], [TakeOffTime], [LandingTime], [WingId]) 
VALUES (5, CAST(N'2021-01-03' AS Date), CAST(N'17:00:00' AS Time), CAST(N'19:00:00' AS Time), 8)
INSERT INTO [dbo].[flights] ([Id], [Date], [TakeOffTime], [LandingTime], [WingId]) 
VALUES (6, CAST(N'2021-01-05' AS Date), CAST(N'15:30:00' AS Time), CAST(N'17:00:00' AS Time), 8)
INSERT INTO [dbo].[flights] ([Id], [Date], [TakeOffTime], [LandingTime], [WingId]) 
VALUES (7, CAST(N'2021-08-25' AS Date), CAST(N'06:00:00' AS Time), CAST(N'08:00:00' AS Time), 8)
INSERT INTO [dbo].[flights] ([Id], [Date], [TakeOffTime], [LandingTime], [WingId]) 
VALUES (8, CAST(N'2021-08-26' AS Date), CAST(N'07:00:00' AS Time), CAST(N'09:30:00' AS Time), 3)
INSERT INTO [dbo].[flights] ([Id], [Date], [TakeOffTime], [LandingTime], [WingId]) 
VALUES (9, CAST(N'2021-09-01' AS Date), CAST(N'06:00:00' AS Time), CAST(N'07:00:00' AS Time), 8)
INSERT INTO [dbo].[flights] ([Id], [Date], [TakeOffTime], [LandingTime], [WingId]) 
VALUES (10, CAST(N'2022-08-10' AS Date), CAST(N'07:00:00' AS Time), CAST(N'09:00:00' AS Time), 8)
INSERT INTO [dbo].[flights] ([Id], [Date], [TakeOffTime], [LandingTime], [WingId]) 
VALUES (11, CAST(N'2022-10-17' AS Date), CAST(N'15:00:00' AS Time), CAST(N'17:00:00' AS Time), 13)
INSERT INTO [dbo].[flights] ([Id], [Date], [TakeOffTime], [LandingTime], [WingId]) 
VALUES (12, CAST(N'2022-10-19' AS Date), CAST(N'16:00:00' AS Time), CAST(N'18:00:00' AS Time), 8)
INSERT INTO [dbo].[flights] ([Id], [Date], [TakeOffTime], [LandingTime], [WingId]) 
VALUES (13, CAST(N'2022-12-21' AS Date), CAST(N'13:00:00' AS Time), CAST(N'15:30:00' AS Time), 13)

INSERT INTO [dbo].[wings] ([Id], [Manufacturer], [Model], [Size], [hoursWhenBought], [purchaseDate]) 
VALUES (2, N'Dudek', N'Synthesis LT', CAST(31.0 AS Decimal(3, 1)), 45, CAST(N'2017-11-04' AS Date))
INSERT INTO [dbo].[wings] ([Id], [Manufacturer], [Model], [Size], [hoursWhenBought], [purchaseDate]) 
VALUES (3, N'Dudek', N'Universal 1.1', CAST(28.0 AS Decimal(3, 1)), 0, CAST(N'2019-08-23' AS Date))
INSERT INTO [dbo].[wings] ([Id], [Manufacturer], [Model], [Size], [hoursWhenBought], [purchaseDate]) 
VALUES (8, N'Dudek', N'Nucleon XX', CAST(24.0 AS Decimal(3, 1)), 150, CAST(N'2021-01-02' AS Date))
INSERT INTO [dbo].[wings] ([Id], [Manufacturer], [Model], [Size], [hoursWhenBought

<details>
<summary>英文:</summary>

I have some tables to store flying data:

``` sql
CREATE TABLE [dbo].[wings]
(
	[Id] [int] NOT NULL,
	[Manufacturer] [varchar](50) NOT NULL,
	[Model] [varchar](50) NULL,
	[Size] [decimal](3, 1) NULL,
	[hoursWhenBought] [tinyint] NULL,
	[purchaseDate] [date] NULL,

    CONSTRAINT [PK__wings__3214EC07E42B45BC] 
        PRIMARY KEY CLUSTERED ([Id] ASC)
)

CREATE TABLE [dbo].[wingServiceHistory]
(
	[wingId] [int] NOT NULL,
	[date] [date] NOT NULL,
	[servicedBy] [varchar](100) NOT NULL,
	[comments] [varchar](200) NULL,

    CONSTRAINT [PK_wingServiceHistory] 
        PRIMARY KEY CLUSTERED ([wingId] ASC, [date] ASC)
)

CREATE TABLE [dbo].[flights]
(
	[Id] [int] NOT NULL,
	[Date] [date] NOT NULL,
	[TakeOffTime] [time](7) NOT NULL,
	[LandingTime] [time](7) NOT NULL,
	[WingId] [int] NULL
)

CREATE CLUSTERED INDEX [ClusteredIndex-Date] 
ON [dbo].[flights] ([Date] ASC)

-- Sample data
INSERT INTO [dbo].[flights] ([Id], [Date], [TakeOffTime], [LandingTime], [WingId]) 
VALUES (1, CAST(N&#39;2019-09-02&#39; AS Date), CAST(N&#39;10:00:00&#39; AS Time), CAST(N&#39;12:00:00&#39; AS Time), 3)
INSERT INTO [dbo].[flights] ([Id], [Date], [TakeOffTime], [LandingTime], [WingId]) 
VALUES (2, CAST(N&#39;2019-09-03&#39; AS Date), CAST(N&#39;09:30:00&#39; AS Time), CAST(N&#39;12:30:00&#39; AS Time), 3)
INSERT INTO [dbo].[flights] ([Id], [Date], [TakeOffTime], [LandingTime], [WingId]) 
VALUES (3, CAST(N&#39;2020-05-05&#39; AS Date), CAST(N&#39;07:00:00&#39; AS Time), CAST(N&#39;08:45:00&#39; AS Time), 3)
INSERT INTO [dbo].[flights] ([Id], [Date], [TakeOffTime], [LandingTime], [WingId]) 
VALUES (4, CAST(N&#39;2020-09-28&#39; AS Date), CAST(N&#39;13:00:00&#39; AS Time), CAST(N&#39;15:00:00&#39; AS Time), 3)
INSERT INTO [dbo].[flights] ([Id], [Date], [TakeOffTime], [LandingTime], [WingId]) 
VALUES (5, CAST(N&#39;2021-01-03&#39; AS Date), CAST(N&#39;17:00:00&#39; AS Time), CAST(N&#39;19:00:00&#39; AS Time), 8)
INSERT INTO [dbo].[flights] ([Id], [Date], [TakeOffTime], [LandingTime], [WingId]) 
VALUES (6, CAST(N&#39;2021-01-05&#39; AS Date), CAST(N&#39;15:30:00&#39; AS Time), CAST(N&#39;17:00:00&#39; AS Time), 8)
INSERT INTO [dbo].[flights] ([Id], [Date], [TakeOffTime], [LandingTime], [WingId]) 
VALUES (7, CAST(N&#39;2021-08-25&#39; AS Date), CAST(N&#39;06:00:00&#39; AS Time), CAST(N&#39;08:00:00&#39; AS Time), 8)
INSERT INTO [dbo].[flights] ([Id], [Date], [TakeOffTime], [LandingTime], [WingId]) 
VALUES (8, CAST(N&#39;2021-08-26&#39; AS Date), CAST(N&#39;07:00:00&#39; AS Time), CAST(N&#39;09:30:00&#39; AS Time), 3)
INSERT INTO [dbo].[flights] ([Id], [Date], [TakeOffTime], [LandingTime], [WingId]) 
VALUES (9, CAST(N&#39;2021-09-01&#39; AS Date), CAST(N&#39;06:00:00&#39; AS Time), CAST(N&#39;07:00:00&#39; AS Time), 8)
INSERT INTO [dbo].[flights] ([Id], [Date], [TakeOffTime], [LandingTime], [WingId]) 
VALUES (10, CAST(N&#39;2022-08-10&#39; AS Date), CAST(N&#39;07:00:00&#39; AS Time), CAST(N&#39;09:00:00&#39; AS Time), 8)
INSERT INTO [dbo].[flights] ([Id], [Date], [TakeOffTime], [LandingTime], [WingId]) 
VALUES (11, CAST(N&#39;2022-10-17&#39; AS Date), CAST(N&#39;15:00:00&#39; AS Time), CAST(N&#39;17:00:00&#39; AS Time), 13)
INSERT INTO [dbo].[flights] ([Id], [Date], [TakeOffTime], [LandingTime], [WingId]) 
VALUES (12, CAST(N&#39;2022-10-19&#39; AS Date), CAST(N&#39;16:00:00&#39; AS Time), CAST(N&#39;18:00:00&#39; AS Time), 8)
INSERT INTO [dbo].[flights] ([Id], [Date], [TakeOffTime], [LandingTime], [WingId]) 
VALUES (13, CAST(N&#39;2022-12-21&#39; AS Date), CAST(N&#39;13:00:00&#39; AS Time), CAST(N&#39;15:30:00&#39; AS Time), 13)

INSERT INTO [dbo].[wings] ([Id], [Manufacturer], [Model], [Size], [hoursWhenBought], [purchaseDate]) 
VALUES (2, N&#39;Dudek&#39;, N&#39;Synthesis LT&#39;, CAST(31.0 AS Decimal(3, 1)), 45, CAST(N&#39;2017-11-04&#39; AS Date))
INSERT INTO [dbo].[wings] ([Id], [Manufacturer], [Model], [Size], [hoursWhenBought], [purchaseDate]) 
VALUES (3, N&#39;Dudek&#39;, N&#39;Universal 1.1&#39;, CAST(28.0 AS Decimal(3, 1)), 0, CAST(N&#39;2019-08-23&#39; AS Date))
INSERT INTO [dbo].[wings] ([Id], [Manufacturer], [Model], [Size], [hoursWhenBought], [purchaseDate]) 
VALUES (8, N&#39;Dudek&#39;, N&#39;Nucleon XX&#39;, CAST(24.0 AS Decimal(3, 1)), 150, CAST(N&#39;2021-01-02&#39; AS Date))
INSERT INTO [dbo].[wings] ([Id], [Manufacturer], [Model], [Size], [hoursWhenBought], [purchaseDate]) 
VALUES (13, N&#39;Dudek&#39;, N&#39;Hadron 3&#39;, CAST(20.0 AS Decimal(3, 1)), 3, CAST(N&#39;2022-10-16&#39; AS Date))

INSERT INTO [dbo].[wingServiceHistory] ([wingId], [date], [servicedBy], [comments]) 
VALUES (3, CAST(N&#39;2020-09-21&#39; AS Date), N&#39;Joe Blogs&#39;, N&#39;full trim service&#39;)
INSERT INTO [dbo].[wingServiceHistory] ([wingId], [date], [servicedBy], [comments]) 
VALUES (8, CAST(N&#39;2021-08-24&#39; AS Date), N&#39;Joe Blogs&#39;, N&#39;full trim service&#39;)
INSERT INTO [dbo].[wingServiceHistory] ([wingId], [date], [servicedBy], [comments]) 
VALUES (8, CAST(N&#39;2022-08-03&#39; AS Date), N&#39;Joe Blogs&#39;, N&#39;full trim service&#39;)

This query returns the flight duration and cumulative hours for all wings across all flights:

SELECT
	Id,
	[Date],
	CAST(DATEADD(minute, DATEDIFF(minute, [TakeOffTime], [LandingTime]), 0) AS time) AS Duration,
	CAST ((SUM(DATEDIFF(minute, [TakeOffTime], [LandingTime])) OVER (ORDER BY [Id]) / 60.0) AS DECIMAL(10, 1)) AS CumulativeHours
FROM  
    flights

I need a query that, for each flight in the flights table, ordered by flights.Id, the cumulative hours for each wingId since the last service date from wingServiceHistory or since the purchase date in wings whichever is sooner.

Or, in English, for every flight, how many hours has this wing been flown since the last service, or the number of hours since it was purchased including the hours when bought.

Results set desired is every column in the flights table plus duration, cumulativeHours, cumulativeHoursSinceService

I would expect results to look like

Id Date TakeOffTime LandingTime WingId duration (HH:MM) cumulativeHours cumulativeHoursSinceService
1 2019-09-02 10:00 12:00 3 02:00 2.0 2.0
2 2019-09-03 09:30 12:30 3 03:00 5.0 5.0
3 2020-05-05 07:00 08:45 3 01:45 6.75 1.75
4 2020-09-28 13:00 15:00 3 02:00 8.75 2.0
5 2021-01-03 17:00 19:00 8 02:00 10.75 152.0
6 2021-01-05 15:30 17:00 8 01:30 12.25 153.5
7 2021-08-25 06:00 08:00 8 02:00 14.25 2.0
8 2021-08-26 07:00 09:30 3 02:30 16.75 4.75
9 2021-09-01 06:00 07:00 8 01:00 17.75 3.0
10 2022-08-10 07:00 09:00 8 02:00 19.75 2.0
11 2022-10-17 15:00 17:00 13 02:00 21.75 5.0
12 2022-10-19 16:00 18:00 8 02:00 23.75 4.0
13 2022-12-21 13:00 15:30 13 02:30 26.25 7.5

答案1

得分: 2

以下是代码部分的翻译:

"适合此情况的一个良好方法是使用一对窗口函数来获取所需的内容。在这种情况下,您还在服务历史中寻找特定相关的行,因此我选择了外部应用程序来执行此操作。"

"窗口函数允许您通过在OVER子句中指定它们来定义它们使用的窗口:"

"PARTITION BY - 按这些条件分组"
"ORDER BY - 按此顺序"

"对于累计小时数的SUM,我们要求得到按航班ID排序的累计总和。"

"对于自上次服务以来的小时数的SUM,我们再次要求得到按翼ID和服务日期分组(因此它会为每个新的服务日期重新开始)并按航班ID排序的累计总和。"

请注意,这是代码的翻译部分,不包括问题或其他内容。

英文:

A good approach for this is a couple of windowed functions to grab what you need. In this case you're also looking for a specific correlated row in the service history, so I opted for an outer apply for that.

SELECT f.Id, f.Date, f.TakeOffTime, f.LandingTime, w.id AS WingID, CAST(DATEADD(MINUTE,DATEDIFF(MINUTE,TakeOffTime,LandingTime),&#39;00:00:00&#39;) AS TIME) AS Duration,
CAST(SUM(DATEDIFF(MINUTE,TakeOffTime,LandingTime)) OVER (ORDER BY f.id)/60.0 AS DECIMAL(4,2)) AS CumulativeHours,
CAST(SUM(DATEDIFF(MINUTE,TakeOffTime,LandingTime)) OVER (PARTITION BY w.id, wsh.date ORDER BY f.id)/60.0 AS DECIMAL(4,2))+CASE WHEN wsh.date IS NULL THEN hoursWhenBought ELSE 0 END AS CumulativeHoursSinceService 
  FROM @flights f
    INNER JOIN @wings w
	  ON f.WingId = w.Id
	OUTER APPLY (SELECT TOP 1 * FROM @wingServiceHistory wsh WHERE wingid = w.id and date &lt;= f.Date ORDER BY date) wsh
 ORDER BY f.id
Id Date TakeOffTime LandingTime WingID Duration CumulativeHours CumulativeHoursSinceService
1 2019-09-02 10:00:00.0000000 12:00:00.0000000 3 02:00:00.0000000 2.00 2.00
2 2019-09-03 09:30:00.0000000 12:30:00.0000000 3 03:00:00.0000000 5.00 5.00
3 2020-05-05 07:00:00.0000000 08:45:00.0000000 3 01:45:00.0000000 6.75 6.75
4 2020-09-28 13:00:00.0000000 15:00:00.0000000 3 02:00:00.0000000 8.75 2.00
5 2021-01-03 17:00:00.0000000 19:00:00.0000000 8 02:00:00.0000000 10.75 152.00
6 2021-01-05 15:30:00.0000000 17:00:00.0000000 8 01:30:00.0000000 12.25 153.50
7 2021-08-25 06:00:00.0000000 08:00:00.0000000 8 02:00:00.0000000 14.25 2.00
8 2021-08-26 07:00:00.0000000 09:30:00.0000000 3 02:30:00.0000000 16.75 4.50
9 2021-09-01 06:00:00.0000000 07:00:00.0000000 8 01:00:00.0000000 17.75 3.00
10 2022-08-10 07:00:00.0000000 09:00:00.0000000 8 02:00:00.0000000 19.75 5.00
11 2022-10-17 15:00:00.0000000 17:00:00.0000000 13 02:00:00.0000000 21.75 5.00
12 2022-10-19 16:00:00.0000000 18:00:00.0000000 8 02:00:00.0000000 23.75 7.00
13 2022-12-21 13:00:00.0000000 15:30:00.0000000 13 02:30:00.0000000 26.25 7.50

Windowed functions allow you to define the window they use by specifying them in the OVER clause:

PARTITION BY - group by these things
ORDER BY - in this order

With the SUM for the cumulative hours we're asking for the running total, ordered by flight id.

With the SUM for the hours since service we're again asking for the running total, but this time grouped by the wing id and the service date (so it starts over for each new one) and ordered by flight id.

答案2

得分: 1

以下是您提供的内容的翻译:

尝试这个示例。我认为,对于每个WingId,计算“上次服务后使用的资源”和“总使用的资源”是重要的。因此,查询结果与期望不同。
更新1:hoursWhenBought 被视为未维护(查询中添加了条件1)。

使用数据 as(
选择 WingId'flight' 事件类型,事件日期,TakeOffTimeLandingTimeid
  ,(datediff(miTakeOffTimeLandingTime)
    +如果 TakeOffTime> LandingTime  1440 else 0 end/60.0 工作小时
来自飞行
联合所有
选择 Id 作为 WingId'purchase' 事件类型,purchaseDate 作为 eventDatenullnull0
  hoursWhenBought 工作小时
来自 wings
联合所有
选择 WingId'Service' 事件类型,事件日期,nullnull0
  0 工作小时
 wingServiceHistory
)
,生命周期 as(
选择 * 
  sum(case when eventType='purchase' or eventType='service' then 1 else 0 end)
     在事件日期上,按事件日期分区,按事件日期排序 cicleN
来自数据
)
选择 WingIdEventTypeeventDateTakeOffTime TOffLandingTime LTworkHours wHourscicleN
  sum(在事件日期上,按WingId分区,按事件日期排序 cumHours
  sum(case when eventType='flight' 
                eventType='purchase'  -- 添加条件1
           then workHours else 0 end)
      在事件日期上,按WingId和cicleN分区,按事件日期排序 cumService
   id
  sum(case when eventType='flight' then workHours else 0 end)
           在事件日期上排序 totHours  -- 所有航班的总数
从生命周期
WingId,事件日期,id排序

结果(草案)。这里的wHours是持续时间或hoursWhenBought。为了清晰起见,列名已缩短。

WingId EventT. eventDate TOff LandT wHours cicleN cumTotal cumService id
2 purchase 2017-11-04 null null 45.00 1 45.00 45.00 0
3 purchase 2019-08-23 null null 0.000 1 0.00 0.00 0
3 flight 2019-09-02 10:00:00 12:00:00 2.000 1 2.00 2.00 1
3 flight 2019-09-03 09:30:00 12:30:00 3.000 1 5.00 5.00 2
3 flight 2020-05-05 07:00:00 08:45:00 1.750 1 6.75 6.75 3
3 Service 2020-09-21 null null 0.000 2 6.75 0.00 0
3 flight 2020-09-28 13:00:00 15:00:00 2.000 2 8.75 2.00 4
3 flight 2021-08-26 07:00:00 09:30:00 2.500 2 11.25 4.50 8
8 purchase 2021-01-02 null null 150.000 1 150.00 150.00 0
8 flight 2021-01-03 17:00:00 19:00:00 2.000 1 152.00 152.00 5
8 flight 2021-01-05 15:30:00 17:00:00 1.500 1 153.50 153.50 6
8 Service 2021-08-24 null null 0.000 2 153.50 0.00 0
8 flight 2021-08-25 06:00:00 08:00:00 2.000 2 155.50 2.00 7
8 flight 2021-09-01 06:00:00 07:00:00 1.000 2 156.50 3.00 9
8 Service 2022-08-03 null null 0.000 3 156.50 0.00 0
8 flight 2022-08-10 07:00:00 09:00:00 2.000 3 158.50 2.00 10
8 flight 2022-10-19 16:00:00 18:00:00 2.000 3 160.50 4.00 12
13 purchase 2022-10-16 null null 3.000 1 3.00 3.00 0
13 flight 2022-10-17 15:00:00 17:00:00 2.000 1 5.00 5.00 11
13 flight 2022-12-21 13:00:00 15:30:00 2.500 1 7.50 7.50 13

示例fiddle

英文:

Try this example. I think, it is important to calculate resource used after last service and total used resource for every WingId. So, query result differs from desired.
Upd1:hoursWhenBought are considered not serviced (condition1 added to query).

with data as(
select WingId,&#39;flight&#39; EventType,date eventDate,TakeOffTime,LandingTime,id
,(datediff(mi,TakeOffTime,LandingTime)
+case when TakeOffTime&gt;LandingTime then 1440 else 0 end)/60.0  workHours
from flights
union all
select Id as WingId,&#39;purchase&#39; EventType,purchaseDate as eventDate,null,null,0
,hoursWhenBought	workHours
from wings
union all
select WingId,&#39;Service&#39; EventType,date eventDate,null,null,0
,0 workHours
from wingServiceHistory
)
,LifeCicles as(
select * 
,sum(case when eventType=&#39;purchase&#39; or eventType=&#39;service&#39; then 1 else 0 end)
over(partition by wingId order by eventDate) cicleN
from data
)
select WingId,EventType,eventDate,TakeOffTime TOff,LandingTime LT,workHours wHours,cicleN
,sum(workHours)over(partition by wingId order by eventDate) cumHours
,sum(case when eventType=&#39;flight&#39; 
or eventType=&#39;purchase&#39;  -- added condition1
then workHours else 0 end)
over(partition by wingId,cicleN order by eventDate) cumService
, id
,sum(case when eventType=&#39;flight&#39; then workHours else 0 end)
over(order by eventDate) totHours  -- total for all flights
from LifeCicles
order by wingId,eventDate,id

Result(draft). Here wHours -duration or hoursWhenBought. Column names shorted for clearity.

WingId EventT. eventDate TOff LandT wHours cicleN cumTotal cumService id
2 purchase 2017-11-04 null null 45.00 1 45.00 45.00 0
3 purchase 2019-08-23 null null 0.000 1 0.00 0.00 0
3 flight 2019-09-02 10:00:00 12:00:00 2.000 1 2.00 2.00 1
3 flight 2019-09-03 09:30:00 12:30:00 3.000 1 5.00 5.00 2
3 flight 2020-05-05 07:00:00 08:45:00 1.750 1 6.75 6.75 3
3 Service 2020-09-21 null null 0.000 2 6.75 0.00 0
3 flight 2020-09-28 13:00:00 15:00:00 2.000 2 8.75 2.00 4
3 flight 2021-08-26 07:00:00 09:30:00 2.500 2 11.25 4.50 8
8 purchase 2021-01-02 null null 150.000 1 150.00 150.00 0
8 flight 2021-01-03 17:00:00 19:00:00 2.000 1 152.00 152.00 5
8 flight 2021-01-05 15:30:00 17:00:00 1.500 1 153.50 153.50 6
8 Service 2021-08-24 null null 0.000 2 153.50 0.00 0
8 flight 2021-08-25 06:00:00 08:00:00 2.000 2 155.50 2.00 7
8 flight 2021-09-01 06:00:00 07:00:00 1.000 2 156.50 3.00 9
8 Service 2022-08-03 null null 0.000 3 156.50 0.00 0
8 flight 2022-08-10 07:00:00 09:00:00 2.000 3 158.50 2.00 10
8 flight 2022-10-19 16:00:00 18:00:00 2.000 3 160.50 4.00 12
13 purchase 2022-10-16 null null 3.000 1 3.00 3.00 0
13 flight 2022-10-17 15:00:00 17:00:00 2.000 1 5.00 5.00 11
13 flight 2022-12-21 13:00:00 15:30:00 2.500 1 7.50 7.50 13

Example fiddle

huangapple
  • 本文由 发表于 2023年6月29日 22:19:35
  • 转载请务必保留本文链接:https://go.coder-hub.com/76581942.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定