1

我对如何查询下表感到困惑。我只是想显示在特定日期订购和接收的数量。

日历表

id  |  date
1   |  2013-07-01 
2   |  2013-07-02 
3   |  2013-07-03 
4   |  2013-07-04 
5   |  2013-07-05
6   |  2013-07-06
7   |  2013-07-07

phone_details 表

id   |  dateOrdered    | dateReceived | upg
1    |  2013-07-01     | 2013-07-05   | exp
2    |  2013-07-02     | 2013-07-05   | post
3    |  2013-07-02     | 2013-07-06   | upgrade
4    |  2013-07-07     | 2013-07-07   | upggrade
5    |  2013-07-03     | 2013-07-04   | exp
6    |  2013-07-01     | 2013-07-02   | exp

我想要的结果是什么。

calendar.date  | noOrdered   |  noReceived  | # of post  | # of exp  | # of upgrade
2013-07-01     | 2           |              |            | 2         |
2013-07-02     | 2           |  1           | 1          |           | 1
2013-07-03     | 1           |              |            | 1         |
2013-07-04     |             |  1           |            |           |
2013-07-05     |             |  2           |            |           |
2013-07-06     |             |  1           |            |           |
2013-07-07     | 1           |  1           |            | 1         | 

这是我的查询:

select calendar.date,DAYNAME(calendar.date) as `day`,
sum(if((`phone_details`.`upg` = 'Post'),1,0)) AS `Post Paid`,
sum(if((`phone_details`.`upg` = 'Upgrade'),1,0)) AS `Upgrade`,
sum(if(((`phone_details`.`upg` = 'Exp') or (`phone_details`.`upg` = 'Future Exp')),1,0)) AS `Exp`,
(select count(phone_ID) FROM phone_details 
        WHERE dateReceived = calendar.date 
        )AS `received`

from `phone_details` JOIN calendar
where calendar.date = phone_details.dateOrdered

group by calendar.date DESC

此查询的问题是,如果在某个日期没有订购任何内容,它不会在结果中显示它,因此即使在该日期有接收,它仍然不会显示。我的结果看起来像下表而不是上面的表。如果我对每一列进行子查询,我能够产生我想要的结果,但处理时间似乎大大减慢。

calendar.date  | noOrdered   |  noReceived  | # of post  | # of exp  | # of upgrade
2013-07-01     | 2           |              |            | 2         |
2013-07-02     | 2           |  1           | 1          |           | 1
2013-07-03     | 1           |              |            | 1         |
2013-07-07     | 1           |  1           |            | 1         | 

一些指导将不胜感激。非常感谢。

4

3 回答 3

4

即使它们与表中的任何内容都不匹配,您也会希望LEFT JOIN为每一行生成结果;calendarphone_details

SELECT c.date "calendar_date", 
  SUM(c.date=pd.dateOrdered) noOrdered,
  SUM(c.date=pd.dateReceived) noReceived,
  SUM(c.date=pd.dateOrdered AND upg='post')    "# of post",
  SUM(c.date=pd.dateOrdered AND upg='exp')     "# of exp",
  SUM(c.date=pd.dateOrdered AND upg='upgrade') "# of upgrade"
FROM calendar c
LEFT JOIN phone_details pd
  ON c.date = pd.dateOrdered
  OR c.date = pd.dateReceived
GROUP BY c.date;

一个用于测试的 SQLfiddle

于 2013-07-06T07:34:13.570 回答
0

我认为您的加入不正确,因为您应该使用 on 而不是 where :

from `phone_details` JOIN calendar
where calendar.date = phone_details.dateOrdered

尝试使用:

from `phone_details` JOIN calendar
on calendar.date = phone_details.dateOrdered
于 2013-07-06T07:21:07.617 回答
-1
select calendar.date,DAYNAME(calendar.date) as `day`,
sum(if((`phone_details`.`upg` = 'Post'),1,0)) AS `Post Paid`,
sum(if((`phone_details`.`upg` = 'Upgrade'),1,0)) AS `Upgrade`,
sum(if(((`phone_details`.`upg` = 'Exp') or (`phone_details`.`upg` = 'Future Exp')),1,0)) AS `Exp`,
(select count(id) FROM phone_details 
        WHERE dateReceived = calendar.date 
        )AS `received`

from `phone_details` JOIN calendar
ON calendar.date = phone_details.dateOrdered or calendar.date = phone_details.dateReceived

group by calendar.date DESC

这工作正常。你可以在这里查看http://sqlfiddle.com/#!2/2b9ca/3

于 2013-07-06T07:42:40.657 回答