Last active
February 21, 2020 09:03
-
-
Save nickdavies791/aa8c13b9105084413f47ce32641c5bb0 to your computer and use it in GitHub Desktop.
Concatenates all email addresses of active users from table into mailing list
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
WITH | |
email_list (concatenated_emails) | |
AS | |
( | |
SELECT | |
ADDEML_0 + ';' | |
FROM | |
AUTILIS | |
WHERE | |
ENAFLG_0 = 2 | |
AND | |
USR_0 NOT IN ('ADMIN', 'ND1', 'ADMCA') | |
GROUP BY | |
ADDEML_0 | |
FOR XML PATH('') | |
) | |
SELECT | |
concatenated_emails | |
FROM | |
email_list | |
/* Returned result set */ | |
concatenated_emails | |
--------------------------- | |
[email protected];[email protected];[email protected] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment