query-engine/examples/scripts/sql_order_by.chase
2026-04-10 10:59:22 +02:00

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;