Created
January 18, 2019 19:13
-
-
Save salsalabs/a3a2dbca62d035120eb2901dc5364d6a to your computer and use it in GitHub Desktop.
Query to retrieve custom column option values. Useful for creating cusotm fields in Engage when importing form Classic.
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 cc.label, cc.type, cco.value | |
from custom_column cc | |
left outer join custom_column_option cco | |
on cco.custom_column_KEY = cc.custom_column_KEY | |
where cc.organization_KEY = 51035 | |
and cco.organization_KEY = 51035 | |
order by cc.label, cco.value; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment