-4

我有两个表,需要创建一个 mysql 视图,在一行中给出结果。

目前我使用连接,但这给了我作为行而不是列的记录。我尝试了枢轴但无法使其工作。我需要一排工作的油漆时间、铅垂时间和其他(其他一切都在其他)。

表结构在这里:

在此处输入图像描述

4

2 回答 2

2

这基本上是一个PIVOT,不幸的是 MySQL 没有 PIVOT 函数,但您可以使用带有CASE语句的聚合函数:

select jobnum,
  sum(case when tasktype = 'paint' then hrs else 0 end) Paint,
  sum(case when tasktype = 'plumb' then hrs else 0 end) plumb,
  sum(case when tasktype not in ('paint', 'Plumb') then hrs else 0 end) Other
from tablea a
left join tableb b
  on a.id = b.tbla_id
group by jobnum

请参阅带有演示的 SQL Fiddle

结果:

| JOBNUM | PAINT | PLUMB | OTHER |
----------------------------------
|      1 |    10 |    10 |    20 |
|      2 |    25 |     0 |     0 |
于 2012-11-09T15:43:50.650 回答
-1
SELECT
    a.`JobNum`,
    SUM(IF(a.`TaskType`='Paint',b.`Hrs`,0)) AS 'Paint',
    SUM(IF(a.`TaskType`='Plumb',b.`Hrs`,0)) AS 'Plumb',
    SUM(IF(a.`TaskType` IN('Paint','Plumb'),0,b.`Hrs`)) AS 'Other'
FROM `tableA` a
INNER JOIN `tableB` b
ON b.`tblAid`=a.`id`
GROUP BY a.`JobNum`
于 2012-11-09T15:58:44.763 回答