Created
February 21, 2018 14:38
-
-
Save RedaAffane/a43444eee78805a7e2f87eeeadfd7417 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| SELECT "conversions".user_id, | |
| "conversions".conversion_timestamp, | |
| "touchpoints".channel, | |
| "touchpoints".timestamp, | |
| "conversions".user_id || extract(epoch from "conversions"."conversion_timestamp") AS "macro_user_session" | |
| FROM "conversions" "conversions" | |
| LEFT JOIN "user_touchpoints" "touchpoints" | |
| ON "conversions"."user_id" = "touchpoints"."user_id" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment