SQL

Create your customer segment

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

NameData TypeLengthPrimary KeyNullable
idText50Yes
emailEmailAddress254TRUE
first_nameText50TRUE
last_nameText50TRUE

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.

idemailfirst_namelast_name
003500M7Q93CKG2je2shannigane0@qq.comSibealHannigane
003500339Kgli7N5t9lbentham1@shutterfly.comLockwoodBentham3
003500oS7XRqSuGyQ2lodoran2@51.laLorenO’Doran
0035003Xgg2dDhmjRBbwhitley3@shutterfly.comBidgetWhitley
003500Sr76b5k8V6n7bfrensch4@time.comBibbyeFrensch

Leave a Reply

Your email address will not be published. Required fields are marked *