mirror of
https://github.com/khibino/haskell-relational-record.git
synced 2025-01-06 04:16:21 +03:00
10 lines
149 B
Bash
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
|
|
;"
|