I am detecting some discrepancies between the total number of sessions in my data on Google Analytics and BigQuery. For calculating this in BQ, I use the following:
SELECT date,
EXACT_COUNT_DISTINCT(CONCAT(fullvisitorid, STRING(visitid)))
AS sessions
FROM [MyData]
The results obtained with this query are these:
Query Results Row date sessions
1 20150601 1269258
2 20150602 1269299
3 20150603 1131770
In Google Analytics, the numbers of sessions per day are:
Day Index Sessions 6/1/2015 1113088
6/2/2015 1112203
6/2/2015 993178
Is there any reason for this difference?