Hello!I'm trying to replicate the data from Adobe Workspace based on the data we're ingesting from data feed.Below is the code I've built:SELECT days, COUNT(DISTINCT visitor_id)
FROM table
WHERE cid = 'campaign_code_example'
GROUP BY days
ORDER BY days ASC However, despite this, the numbers are diff...