mr-agrwal edited a comment on issue #6439: URL: https://github.com/apache/pinot/issues/6439#issuecomment-897086362
@Jackie-Jiang The requirement is something like `select item, mode(price) from sales group by item`. To achieve this we would basically have to do the following for each item. ``` select price, count(*) as cnt from sales where item = <itemId> group by price order by cnt desc limit 1 ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
