Created
July 17, 2019 05:20
-
-
Save Shaddyjr/8b1ac948ec747b8d3663f06e13fb0a0f 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
-- https://dba.stackexchange.com/questions/161901/select-pairs-a-b-excluding-b-a-with-same-value | |
SELECT | |
p1.Id,p2.Id,p1.Name | |
FROM Pairs p1 | |
JOIN Pairs p2 | |
ON p1.Name = p2.Name | |
AND p1.Id < p2.Id |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment