반환 값빈번하게 나타나는 값을 반환합니다. 결과는 결정적이지 않습니다. Any예시사용 예시
Query
CREATE TABLE ontime (AirlineID UInt32) ENGINE = Memory;-- Three quarters of the flights belong to one airline, so it occurs in more than half of the-- rows seen by every thread and the result is the same on every run.INSERT INTO ontime SELECT if(number % 4 = 0, 19393, 19690) FROM numbers(1000);SELECT anyHeavy(AirlineID) AS resFROM ontime;