Last active
December 30, 2020 19:58
-
-
Save montrealist/3846146a3f10653dc87dc02183a79b63 to your computer and use it in GitHub Desktop.
sql join on tinder like site
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 evalutions.shownId | |
from evalutions | |
inner join evalutions as OtherEvaluations | |
on evalutions.uid = OtherEvaluations.shownId | |
and OtherEvaluations.res = yes | |
where evalutions.uid = 'K' and evalutions.res = yes |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment