packages feed

relational-record-examples-0.2.0.2: sql/4.1.2.sh

#! /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')
;"