I use the following code and get the error below
select d.searchpack,d.context, d.day,d,txnid,d.config, c.sgtype from ds3resultstats d join context_header c on (d.context=c.contextid) where (d.day>='2012-11-15' and d.day<='2012-11-25' and c.sgtype='Tickler' and d.config like '%people%') GROUP BY d.context limit 10; FAILED: Error in semantic analysis: line 1:7 Expression Not In Group By Key d
I assume that I am using the group incorrectly
source share