Created
April 12, 2019 04:55
-
-
Save ahl/3195700ad377dc24bbcfd79693cb67a9 to your computer and use it in GitHub Desktop.
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 * FROM google_hire.list_applications AS app | |
JOIN google_hire.list_candidates AS can | |
ON app.candidate = can.name | |
WHERE app.tenant = 'my_tenant' | |
AND app.filter='status.state=ACTIVE' | |
AND can.tenant = 'my_tenant' | |
AND can.filter='applications.status.state=ACTIVE’ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment