Created 11-04-2018 03:21 PM
SELECT COUNT(DISTINCT cust_n) OVER(PARTITION BY ord_id,ord_d) cusp_cnt FROM table1;
-- Not working in Impala. Is there any way to overcome the issue.
Created 11-16-2018 11:42 PM