Created
October 21, 2019 22:10
-
-
Save phette23/51037b2a4cd940205c127370f8f54620 to your computer and use it in GitHub Desktop.
get people's publications from CCA portal
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 u.first_name, u.last_name, u.email, pub.title, pub.published_in, pub.url, pub.date, pub.description | |
FROM people_ppublication pub | |
JOIN people_portalprofile prof ON (pub.object_id = prof.id) | |
JOIN people_userprofile u ON (prof.user_id = u.id) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment