mirror of
https://github.com/MartinThoma/LaTeX-examples.git
synced 2025-04-25 22:38:04 +02:00
12 lines
209 B
MySQL
12 lines
209 B
MySQL
|
CREATE VIEW FriendshipSymmetric AS (
|
||
|
(
|
||
|
SELECT person1, person2
|
||
|
FROM Friendship
|
||
|
)
|
||
|
UNION
|
||
|
(
|
||
|
SELECT person2 AS person1, person1 AS person2
|
||
|
FROM Friendship
|
||
|
)
|
||
|
)
|