mirror of
https://github.com/khibino/haskell-relational-record.git
synced 2024-11-29 14:45:51 +03:00
10 lines
163 B
Bash
10 lines
163 B
Bash
#! /bin/bash
|
|
|
|
# Using the not operator
|
|
|
|
sqlite3 examples.db "
|
|
SELECT *
|
|
FROM employee
|
|
WHERE end_date IS NULL AND (title = 'Teller' OR start_date < '2003-01-01')
|
|
;"
|