2
0
Fork 0
mirror of https://github.com/MartinThoma/LaTeX-examples.git synced 2025-04-25 06:18:05 +02:00
LaTeX-examples/documents/musterloesung-db-2012-09-24/d2c2.sql
Nilan 8d0fccde3a Fixed a copy paste errors and filtered out all edges with form (x,x)
Before, there were edges in this form (x,x) included but they shouldn't be included.
2013-07-27 19:42:28 +02:00

13 lines
268 B
SQL

SELECT f1.person2, f2.person2
FROM (
SELECT person2 FROM FriendshipSymmetric WHERE person1 = <id>
) f1
JOIN ON
(
SELECT person2 FROM FriendshipSymmetric WHERE person1 = <id>
) f2
EXCEPT
(
SELECT * FROM FriendshipSymmetric
)
WHERE f1.person2 != f2.person2