4
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

treasure data で月間PVを取るHive

4
Posted at
SELECT
    TD_TIME_FORMAT(time, 'yyyy-MM', 'JST'),
    COUNT(*) AS total
 FROM hoge_table
WHERE action = 'page_view'
  AND TD_TIME_RANGE(
        time,
        IF(DAY(TD_TIME_FORMAT(UNIX_TIMESTAMP(), 'yyyy-MM-dd', 'JST')) = 1,
           TD_TIME_FORMAT(TD_TIME_ADD(UNIX_TIMESTAMP(), '-1d', 'JST'), 'yyyy-MM-01 00:00:00', 'JST'),
           TD_TIME_FORMAT(UNIX_TIMESTAMP(), 'yyyy-MM-01 00:00:00', 'JST')),
        TD_TIME_FORMAT(UNIX_TIMESTAMP(), 'yyyy-MM-dd 00:00:00', 'JST'),
        'JST'
      )
GROUP BY TD_TIME_FORMAT(time, 'yyyy-MM', 'JST')

hoge_table に page_view という action 名でレコードがはいってるとして。
毎日昨日までの月間PVを集計するようなクエリー。

JST をつけまくらなきゃならないのが面倒。

4
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?