Jaka Jancar
unread,Mar 2, 2011, 4:53:35 PM3/2/11Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to BigQuery discuss
Let me explain why we would need this:
We have a pageviews table with columns: (timestamp, visit, page). We
would like to generate report on the most common "user flows", based
on the first 4 pages, to return rows like ("home, gallery, home,
news", 50000), e.g. using:
SELECT GROUP_CONCAT(page ORDER BY timestamp LIMIT 4) flow, COUNT(*)
FROM [table] GROUP BY flow;
Is there another way of achieving this with BigQuery?