オンライン マーケティング チャネルを通じて作成されたカスタマー ジャーニー ユーザーを探しています。私のデータセットのスキーマは、 https ://support.google.com/analytics/answer/3437719?hl=en にある Google Merchandise Store と同じです 。
これは私の入力データがどのように見えるかです(例):
+---------------+-------+------------+---------+--------------+-------------+
| fullVisitorId | visit | visitTime | revenue | transactions | channel |
+---------------+-------+------------+---------+--------------+-------------+
| 1234 | 1 | 1516468217 | null | null | Direct |
| 1234 | 2 | 1517937012 | null | null | EMail |
| 1234 | 3 | 1523031014 | null | null | Organic |
| 1234 | 4 | 1530461419 | null | null | Organic |
| 1234 | 5 | 1531152611 | null | null | Paid Search |
| 1234 | 6 | 1531411812 | 1393000 | 1 | Organic |
+---------------+-------+------------+---------+--------------+-------------+
私はすでにこのSQLクエリを実行しました:
WITH
_step1 AS (SELECT
DISTINCT
a.fullVisitorId,
a.visitNumber,
a.visitStartTime,
a.Date,
a.totals.totalTransactionRevenue AS totalTransactionRevenue,
a.totals.transactions AS transactions,
a.channelGrouping AS channelGrouping
FROM
`data` a,
unnest(a.hits) as h
)
SELECT
a.fullVisitorId as visitor,
STRING_AGG(channelGrouping, '>') AS CustomerJourney,
SUM(totalTransactionRevenue) AS Umsatz,
SUM(transactions) AS transaktionen
FROM
_step1 as s
GROUP BY fullVisitorId
結果は次のようになります。
+--------+----------------------------+---------+---------------+
| visitor| CustomerJourney | Umsatz | transaktionen |
+--------+----------------------------+---------+---------------+
|1234 | Direct>EMail | null | null |
|1234 | Organic | null | null |
|1234 | Organic>Paid Search>Organic| 1393000 | 1 |
+--------+----------------------------+---------+---------------+
私が実際に得るもの:
+--------+-------------------------------------------------+---------+---------------+
| visitor| CustomerJourney | Umsatz | transaktionen |
+--------+-------------------------------------------------+---------+---------------+
|1234 | Direct>EMail>Organic>Organic>Paid Search>Organic|1393000 |1 |
+--------+-------------------------------------------------+---------+---------------+
難しい部分:
コンバージョン トラッキング期間 (30 日) があります。これは、最初の訪問から 30 日が経過した場合、またはユーザーがトランザクション (新しい行) を完了した場合に、新しいカスタマー ジャーニーが開始されることを意味します。訪問ごとにタイムスタンプがあります。
コンバージョン トラッキング期間を考慮するには、どのクエリを開始する必要がありますか?