If you want to find the unique set of <tran_id,cust_id,acct_nbr> then use DISTINCT.
SELECT DISTINCT tran_id,cust_id,acct_nbr FROM financial.checking_tran;
↧