mirror of
https://github.com/khibino/haskell-relational-record.git
synced 2024-11-29 14:45:51 +03:00
11 lines
144 B
Bash
11 lines
144 B
Bash
#! /bin/bash
|
|
|
|
# Grouping
|
|
|
|
sqlite3 examples.db "
|
|
SELECT open_emp_id, COUNT(*) how_many
|
|
FROM account
|
|
GROUP BY open_emp_id
|
|
ORDER BY open_emp_id
|
|
;"
|