我有一个关于使用 sql 语句组合表中的两行的 MySQL 语句的查询。最初,我已经实现了在数据网格视图中显示员工班次的代码。
LocationName | StationName | 12:00 - 13:00 | 13:00 - 14:00 | 14:00 - 15:00
T2 | Counter | Michael Joyce | Michael Joyce | Michael Joyce
如您所见,在同一个 Location 和 Station 下有两名员工。下一步,我将使用 SQL 语句输入格式并最终将 SQL 语句用于 reportviewer。
这是我试图以与上图相同的格式显示的 SQL 语句。
select
z.LocationName,
z.StationName,
a.12001300,
b.13001400,
c.14001500
from (SELECT DISTINCT
LocationName,
StationName
FROM satsschema.employeeslot
where AllocationDate = '10-Aug'
and LocationName = 'T2 PML'
and StationName is not null) z
left outer join (SELECT
LocationName,
StationName,
EmpName AS '12001300'
FROM satsschema.employeeslot
WHERE Assigned = true
and AllocationDate = '10-Aug'
and (EmpTime = '12:00:00' && EmpTime < '13:00:00')) a
on z.LocationName = a.LocationName
and z.StationName = a.StationName
left outer join (SELECT
LocationName,
StationName,
EmpName AS '13001400'
FROM satsschema.employeeslot
WHERE Assigned = true
and AllocationDate = '10-Aug'
and (EmpTime = '13:00:00' && EmpTime < '14:00:00')) b
on a.LocationName = b.LocationName
and a.StationName = b.StationName
left outer join (SELECT
LocationName,
StationName,
EmpName AS '14001500'
FROM satsschema.employeeslot
WHERE Assigned = true
and AllocationDate = '10-Aug'
and (EmpTime = '14:00:00' && EmpTime < '15:00:00')) c
on b.LocationName = c.LocationName
and b.StationName = c.StationName
上面显示的这条 SQL 语句显示了以下与我想要的不匹配的结果。它显示如下:
LocationName | StationName | 12:00 - 13:00 | 13:00 - 14:00 | 14:00 - 15:00
T2 | Counter | Michael | Michael | Michael
如您所见,它仅在 Location 和 Station 中显示一名员工。如果 Location and Station 内有多个员工,我还可以看到其他员工的 SQL 语句怎么办。有什么意见吗?