query-engine/examples/scripts/sql_order_by.ech

8 lines
158 B
Plaintext
Raw Normal View History

# 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;