3

次の表があります。

+----+---------------------+-------------+-----------------+
| id | stat_time           |       reads |          writes |
+----+---------------------+-------------+-----------------+
|  1 | 2013-07-18 20:00:00 |    42614543 |         1342129 |
|  2 | 2013-07-18 21:00:00 |    23085319 |          326139 |
|  3 | 2013-07-25 12:00:00 |           0 |           39639 |
|  4 | 2013-07-25 13:00:00 |      754166 |           39639 |
|  5 | 2013-07-25 14:00:00 |      693382 |          295323 |
|  6 | 2013-07-25 15:00:00 |     1334462 |               0 |
|  7 | 2013-07-25 16:00:00 |    10748367 |          261489 |
|  9 | 2013-07-25 17:00:00 |     4337294 |               0 |
| 10 | 2013-07-25 18:00:00 |     3002796 |               0 |
| 11 | 2013-07-25 20:00:00 |     3002832 |               0 |
| 12 | 2013-07-25 23:00:00 |           0 |          333468 |
| 13 | 2013-07-26 17:00:00 |    10009585 |               0 |
| 15 | 2013-07-26 18:00:00 |     6005752 |               0 |
| 17 | 2013-07-26 21:00:00 |      333663 |               0 |
+----+---------------------+-------------+-----------------+

私はこのようなことをしたいと思います:

SELECT stat_time, SUM(reads), SUM(writes) from this_table GROUP BY stat_time HAVING 'the same day'..

したがって、3 つの行 (1 つは 2013-07-18 用、2 番目は 2013-07-25 用、3 番目は 2013-07-26 用) を出力し、列内のそのような行ごとに読み取り/書き込みの合計があるコマンドこの日に読み書きします。

ありがとう、デビッド

4

2 に答える 2

16

これを行うには、 を 1 日に変換しstat_timeます。方法はデータベースによって異なります。1 つの方法を次に示します。

SELECT cast(stat_time as date) as stat_day, SUM(reads), SUM(writes)
from this_table
GROUP BY cast(stat_time as date)
order by stat_day;

その他のアプローチを次に示します (MySQL および Oracle の場合)。

SELECT date(stat_time) as stat_day, SUM(reads), SUM(writes)
from this_table
GROUP BY date(stat_time)
order by stat_day;

SELECT trunc(stat_time) as stat_day, SUM(reads), SUM(writes)
from this_table
GROUP BY trunc(stat_time)
order by stat_day;
于 2013-07-27T16:09:27.073 に答える
0

D-DATE_START という名前の列があるとします。

$query = 'SELECT cast(D_DATE_START as date) as stat_day ,'
        .'sum(I_REV_MODEL) as totalDayRevenu '
        .'FROM t_show WHERE FK_MODEL=136 '
        ."and t_show.D_DATE_START between '".$after."' and '".$before."'"
        .' GROUP BY cast(D_DATE_START as date) '
        .' ORDER BY stat_day ';
于 2016-08-08T14:21:04.347 に答える