在聚合查询时,查询的列表字段不在group by的分组字段中时,就会报这个错,可以使用ANY_VALUE(expr) AS expr的方式包裹不分组的列字段
举个栗子: select record_id,seller_id from sales_records group by record_id ↑会报错select record_id, ANY_VALUE(seller_id) AS seller_id from sales_records group by record_id ↑可正常执行
ANY_VALUE - Apache Doris