@ppmao wrote:
Heya,
So I was running this query on the piwik database and found out that for the same visit (idvisit), if a goal was converted during that visit, the referer type/name is not the same in both tables?
Here is my query:
SELECT v.idvisit,
v.referer_type AS 'Visit referer_type',
c.referer_type AS 'Conversion referer_type'
FROM piwik_log_conversion c
JOIN piwik_log_visit v ON c.idvisit = v.idvisit
WHERE c.referer_type <> v.referer_type LIMIT 10 ;And here is the result:
idvisit,"Visit referer_type","Conversion referer_type"
10,1,3
26,1,6
51,1,6
54,1,2
56,1,6
82,1,2This is really puzzling me, and I've read through the documentation but could not find an answer to that.
Any insight would be greatly appreciated
Posts: 2
Participants: 2