A Editor company would like to send out its weekly newsletter, and the marketing team requires create the customer list from their master customer, they wish to personalize their communication by using the first names and last names of their subscribers. As a member of the marketing team, you are responsible for creating the target data extension which will hold the data that will serve for personalization.
Create the target data extension
Data Extension Details: Master Customer
Name | Data Type | Length | Primary Key | Nullable |
---|---|---|---|---|
id | Text | 50 | Yes | |
EmailAddress | 254 | TRUE | ||
first_name | Text | 50 | TRUE | |
last_name | Text | 50 | TRUE |
SQL query activity
SELECT
email, first_name, last_name
FROM [Master Customer]
Explanation
SELECT:
This clause point out which columns you’d like to see in your target data extension.FROM:
This clause point out to the table from which you want to pull the data.
Outcomes gathered: Target DE is ready to be use to send emails.
id | first_name | last_name | |
---|---|---|---|
003500M7Q93CKG2je2 | shannigane0@qq.com | Sibeal | Hannigane |
003500339Kgli7N5t9 | lbentham1@shutterfly.com | Lockwood | Bentham3 |
003500oS7XRqSuGyQ2 | lodoran2@51.la | Loren | O’Doran |
0035003Xgg2dDhmjRB | bwhitley3@shutterfly.com | Bidget | Whitley |
003500Sr76b5k8V6n7 | bfrensch4@time.com | Bibbye | Frensch |