Viewing 4 posts - 1 through 4 (of 4 total)
SELECT DISTINCT(USER_ID) FROM marketing_dataset WHERE EMAIL_CAMPAIGN IN
(SELECT TOP 1 WITH TIES EMAIL_CAMPAIGN
FROM marketing_dataset
GROUP BY EMAIL_CAMPAIGN
ORDER BY SUM(REGISTER_WEBINAR)/COUNT(DISTINCT (USER_ID)) DESC)
Thanks a lot man, You guided me to solve...
November 18, 2014 at 1:35 am
Jason Selburg (6/27/2011)
--...
June 27, 2011 at 12:01 pm
I was able to find a solution for the problem and I am posting the same for the benefit of others:
http://msdn.microsoft.com/en-us/library/ms175972%28SQL.90%29.aspx
Look under section J of the article....
June 27, 2011 at 4:37 am
Sorry for the missing info. FYI all 3 columns are nvarchar(max). Table name is WODetails.
I am re attaching the sheet with updated info.
June 25, 2011 at 4:07 am
Viewing 4 posts - 1 through 4 (of 4 total)