A developer wants to populate a data extension with the date of the most recent click for eachsubscriber. Which query would accomplish this?
C
C. SELECT c.SubscriberKey, MAX(c.eventDate) AS eventDate FROM _Click c GROUP BY c.SubscriberKey
Please log in or signup in order to use this feature
Please Enter 10 characters or more
C. SELECT c.SubscriberKey, MAX(c.eventDate) AS eventDate FROM _Click c GROUP BY c.SubscriberKey