$ 0 0 SELECT cust_id, name, max(age),max(telno),... GROUP BY cust_id, name; Hopefully there is some way to identify which rows are new so that these don't get coalesced with prior rows for a customer (eg an effective date).
SELECT cust_id, name, max(age),max(telno),... GROUP BY cust_id, name;
Hopefully there is some way to identify which rows are new so that these don't get coalesced with prior rows for a customer (eg an effective date).