mirror of
https://github.com/khibino/haskell-relational-record.git
synced 2024-11-29 14:45:51 +03:00
10 lines
161 B
Bash
10 lines
161 B
Bash
#! /bin/bash
|
|
|
|
# Descending sort order
|
|
|
|
sqlite3 examples.db "
|
|
SELECT account_id, product_cd, open_date, avail_balance
|
|
FROM account
|
|
ORDER BY avail_balance DESC
|
|
;"
|