Think of your favorite website: how did you find it? Did you use a search engine? Or click on an ad? Or follow a link in a blog post?
Web developers, marketers, and data analysts use that information to improve their sources (sometimes called channels or touchpoints) online. If an ad campaign drives a lot of visits to their site, then they know that source is working! We say that those visits are attributed to the ad campaign.
But how do websites capture that information? The answer is UTM parameters. These parameters capture when and how a user finds the site. Site owners use special links containing UTM parameters in their ads, blog posts, and other sources. When a user clicks one, a row is added to a database describing their page visit. You can see a common schema for a “page visits” table below and at this link.
user_id
- A unique identifier for each visitor to a pagetimestamp
- The time at which the visitor came to the pagepage_name
- The title of the section of the page that was visitedutm_source
- Identifies which touchpoint sent the traffic (e.g. google, email, or facebook)utm_medium
- Identifies what type of link was used (e.g. cost-per-click or email)utm_campaign
- Identifies the specific ad or email blast (e.g. retargetting-ad or weekly-newsletter)
In this lesson, you will learn how to use SQL, UTM parameters, and touch attribution to draw insights from this data!
Instructions
Select the first 10 rows of the page_visits
table. Make sure you understand the significance of each column before moving on!