SQL queries for Adobe Analytics Datafeed data
I have extracted the datafeed for a single day and imported it into a single SQL table. I have successfully created SQL queries to calculate Unique Visitors and Visits, as shown below and its exactly matching with workspace data.
Unique Visitors: SELECT COUNT(distinct concat(post_visid_high, post_visid_low)) from where visit_page_num!=0 and hit_source not in (5,7,8,9)
Visits: SELECT COUNT(distinct CONCAT(post_visid_high, post_visid_low, visit_num, visit_start_time_gmt)) FROM
where visit_page_num!=0 and hit_source not in (5,7,8,9)
Could someone please share similar SQL queries for calculating the following metrics?
1. Page Views
2. Bounce
3. Bounce Rate
4. New User
5. Repeated User
5. Average time on site
6. Average time per page
7. Entries
8. Exits