选择一个字段,并在mysql中计算另一个字段

时间:2017-09-17 16:51:37

标签: mysql sql select count

在网上商店,我列出了来自mysql的订单来创建报告。我想看,当(日期)和订单数量时。

现在我的表中的订单:

  • 2017-09-12
  • 2017-09-13
  • 2017-09-13
  • 2017-09-13
  • 2017年9月11日

我怎么算数,2017-09-13有多少订单?

我的sql:

SELECT datum FROM rendeles_adatok ORDER BY datum ASC LIMIT $actual, $row_per_page

我的意思是: enter image description here

1 个答案:

答案 0 :(得分:2)

您需要按datum分组结果:

SELECT   datum, COUNT(*) 
FROM     rendeles_adatok 
GROUP BY datum -- Here!
ORDER BY datum ASC 
LIMIT    $actual, $row_per_page