haskell-relational-record/relational-record-examples/sql/4.3.3c.sh
2014-12-15 13:56:39 +09:00

11 lines
196 B
Bash

#! /bin/bash
# Membership conditions using not in
sqlite3 examples.db "
SELECT account_id, product_cd, cust_id, avail_balance
FROM account
WHERE product_cd NOT IN ('CHK', 'SAV', 'CD', 'MM')
;"