haskell-relational-record/relational-record-examples/sql/3.7.3.sh
Kazu Yamamoto 67156db709 new SQLs.
2014-12-15 13:49:28 +09:00

10 lines
149 B
Bash

#! /bin/bash
# Sorting via numeric placeholders
sqlite3 examples.db "
SELECT emp_id, title, start_date, fname, lname
FROM employee
ORDER BY 2,5
;"