relational-record-examples-0.2.0.0: sql/4.3.3c.sh
#! /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')
;"
#! /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')
;"