mirror of
https://github.com/khibino/haskell-relational-record.git
synced 2024-12-02 08:12:49 +03:00
10 lines
205 B
Bash
10 lines
205 B
Bash
#! /bin/bash
|
|
|
|
# Range condition with the between operator
|
|
|
|
sqlite3 examples.db "
|
|
SELECT emp_id, fname, lname, start_date FROM employee
|
|
WHERE start_date
|
|
BETWEEN date('2001-01-01') AND date('2002-12-31')
|
|
;"
|