gpt4 book ai didi

Mysql只选择指定数量的连续空闲时间段的员工

转载 作者:行者123 更新时间:2023-11-29 12:29:03 25 4
gpt4 key购买 nike

每个员工在 AvailSlots 中都有一个可用时间段表,如下所示:

    Staff_ID  Avail_Slots_Datetime

1 2015-1-1 09:00:00
1 2015-1-1 10:00:00
1 2015-1-1 11:00:00
2 2015-1-1 09:00:00
2 2015-1-1 10:00:00
2 2015-1-1 11:00:00
3 2015-1-1 09:00:00
3 2015-1-1 12:00:00
3 2015-1-1 15:00:00

我需要找出哪些员工在每个时间段有 2 个(或 3、4 个等)连续可用时间段。作为一个新手,如果查询是针对 2 个连续时隙的,我所知道的就是下面的 INNER JOIN 代码。

    SELECT a.start_time, a.person
FROM a_free a, a_free b
WHERE (b.start_time = addtime( a.start_time, '01:00:00' )) and (a.person = b.person)

但是,显然,这样做,我必须添加更多的 INNER JOIN 代码 - 对于每种情况 - 取决于查询是否针对给定日期的 3、4、5 等连续可用时隙/小时。因此,我想学习一种更高效、更灵活的方法来做到这一点。具体来说,我需要的查询代码(以自然语言)将是这样的:

  • 对于 AvailSlots 中的每个时间段,列出一名具有 X 的员工(其中 X 可以是我为每个查询指定的任何数字,从 1 到 24)连续的日期时间从该日期时间开始的时间段。如果超过一名员工可以见面根据该标准,抢七局是他们的“排名”,该排名保存在单独表格如下:

    Ranking Table (lower number = higher rank) 
    Staff_ID Rank
    1 3
    2 1
    3 2

如果答案是使用“mysql变量”、“ View ”等,请解释这些东西是如何工作的。再说一次,作为一个彻底的mysql新手,“select”、“join”、“where”、“group by”是我迄今为止所知道的。我渴望了解更多,但到目前为止无法理解更高级的 mysql 概念。非常感谢。

最佳答案

使用比您发布的更多的数据,我找到了一个可以满足您需要的查询。它确实使用了您预测的变量:)但我希望它是不言自明的。让我们从表格开始:

CREATE TABLE a_free
(`Staff_ID` int, `Avail_Slots_Datetime` datetime)
;

INSERT INTO a_free
(`Staff_ID`, `Avail_Slots_Datetime`)
VALUES
(1, '2015-01-01 09:00:00'),
(1, '2015-01-01 10:00:00'),
(1, '2015-01-01 11:00:00'),
(1, '2015-01-01 13:00:00'),
(2, '2015-01-01 09:00:00'),
(2, '2015-01-01 10:00:00'),
(2, '2015-01-01 11:00:00'),
(3, '2015-01-01 09:00:00'),
(3, '2015-01-01 12:00:00'),
(3, '2015-01-01 15:00:00'),
(3, '2015-01-01 16:00:00'),
(3, '2015-01-01 17:00:00'),
(3, '2015-01-01 18:00:00')
;

然后有一个查询来查找连续的槽。它列出了每对的开始时间,并用唯一的编号标记每组连续的时隙。 case 表达式是神奇发生的地方,请参阅评论:

select
Staff_ID,
Avail_Slots_Datetime as slot_start,
case
when @slot_group is null then @slot_group:=0 -- initalize the variable
when @prev_end <> Avail_Slots_Datetime then @slot_group:=@slot_group+1 -- iterate if previous slot end does not match current one's start
else @slot_group -- otherwise just just keep the value
end as slot_group,
@prev_end:= Avail_Slots_Datetime + interval 1 hour as slot_end -- store the current slot end to compare with next row
from a_free
order by Staff_ID, Avail_Slots_Datetime asc;

确定了包含槽组的列表后,我们可以将上面的查询包装在另一个查询中以获取每个槽组的长度。第一个查询的结果将被视为任何其他表:

select
Staff_ID,
slot_group,
min(slot_start) as group_start,
max(slot_end) as group_end,
count(*) as group_length
from (

select
Staff_ID,
Avail_Slots_Datetime as slot_start,
case
when @slot_group is null then @slot_group:=0
when @prev_end <> Avail_Slots_Datetime then @slot_group:=@slot_group+1
else @slot_group
end as slot_group,
@prev_end:= Avail_Slots_Datetime + interval 1 hour as slot_end
from a_free
order by Staff_ID, Avail_Slots_Datetime asc
) groups
group by Staff_ID, slot_group;

注意:如果使用相同的数据库连接再次执行查询,变量将不会被重置,因此 slot_groups 编号将继续增长。这通常应该不是问题,但为了安全起见,您需要在之前或之后执行类似的操作:

select @prev_end:=null;

如果你喜欢的话,可以玩 fiddle :http://sqlfiddle.com/#!2/0446c8/15

关于Mysql只选择指定数量的连续空闲时间段的员工,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27879658/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com