This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
select | |
x.bounceCategory | |
, x.sendid | |
from ( | |
select | |
b.bounceCategory | |
, b.sendid | |
, row_number() over (partition by b.bounceCategory order by newid()) ranking | |
from _bounce b | |
) x | |
where x.ranking = 1 | |
/* list all of the bounce categories and return */ | |
/* a random sendid/jobid associated with each one */ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment