Start End
10:01 10:12 (A)
10:03 10:06 (A)
10:05 10:25 (C)
10:14 10:42 (D)
10:32 10:36 (E)
当我查询A时,我需要
Start End
10:12 10:03 (A)
什么是sql查询请。 感谢
伙计们,感谢您的回复。我的目标是计算时间表。员工将打入并打出。我将这些记录存储在一个表中。那张桌子有时间和一个冲头或冲头的场地。员工可能会出去吃午饭或其他原因并出去打工。我需要扣除这些时间并获得工作时间。我的表格如下所示:
PunchTime EmpCode IsInpunch
10:01 AM (A) T
12:03 PM (A) F (this isoutpunch)
01:05 PM (A) T
07:14 PM (A) F
10:32 AM (B) T
对于(A)的时间7.14 - 10.01是总小时数,但他不在12.03到01.05之间 所以我需要扣除午餐时间并获得总时数。如何在查询
中执行此操作答案 0 :(得分:1)
SELECT max(start), min(end) FROM table WHERE column='A';
答案 1 :(得分:1)
如果你要寻找总时间,就可以这样做。
DECLARE @testData table (
Punchtime datetime, empcode char(3), isInPunch char(1))
INSERT INTO @testData
Values
('10:01 AM ', '(A)', 'T'),
('12:03 PM', '(A)', 'F'),
('01:05 PM', '(A)', 'T'),
('07:14 PM', '(A)', 'F'),
('10:32 AM', '(B)', 'T')
;WITH CTE as(
SELECT
DENSE_RANK() over (Partition by empcode , isInPunch Order by punchTime) id,
Punchtime,
empcode,
isInPunch
FROM
@testData
WHERE
empcode = '(A)'
)
SELECT
Cast(cast(sum(
cast(outTime.punchTime as float) - cast(inTime.punchTime as float)
)as datetime) as time)
FROM
CTE inTime
INNER JOIN CTE outTime
ON inTime.empcode = outTime.empcode
AND inTime.id = outTime.id
AND inTime.isInPunch = 'T'
and outTime.isInPunch = 'F'
答案 2 :(得分:1)
此查询在Punch ='F'(非工作时间)后找到Punch的第一个PunchTime ='T'。 然后你可以简单地计算dateiff和类似的东西。
SELECT EmpCode,
PunchTime StartTime,
(SELECT TOP 1 PunchTime from Table1
where IsInpunch = 'T' and EmpCode=T.EmpCode and PunchTime>T.PunchTime
order by PunchTime) EndTime
FROM Table1 T
WHERE IsInpunch = 'F'