mirror of
https://github.com/khibino/haskell-relational-record.git
synced 2024-11-29 14:45:51 +03:00
11 lines
196 B
Bash
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')
|
|
;"
|
|
|