8 lines
158 B
Plaintext
8 lines
158 B
Plaintext
# Sort SQL output through ORDER BY.
|
|
|
|
fact Parent(alice, bob).
|
|
fact Parent(bob, carol).
|
|
fact Parent(carol, dave).
|
|
|
|
sql SELECT c0 FROM Parent ORDER BY c0 DESC;
|