Last active
September 19, 2016 13:02
-
-
Save Sapphiron532/06dfb3bd816f67ca4236588842e04dc9 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 drar.PROPERTY_NAME as PROPERTY_NAME, | |
LISTAGG(dfpr.FORM_ID, ',') WITHIN GROUP (ORDER BY dfpr.FORM_ID) as FORM_ID | |
FROM DICT_RESERVED_ACCOUNT_R drar JOIN | |
DICT_FORM_PROPS_RATIO dfpr | |
ON dfpr.PROPERTY_NAME= drar.PROPERTY_NAME | |
WHERE drar.PROPERTY_NAME = 'title' | |
GROUP BY drar.PROPERTY_NAME |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment