Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
ClickHouse launches Claude-powered Agents and House Mates partner program at Open House 2026 Read more →
توثيق يصف مُعدِّل APPLY الذي يتيح لك استدعاء دالة ما لكل صف يُرجعه تعبير جدول خارجي ضمن استعلام.
يتيح لك استدعاء دالة ما لكل صف يُرجعه تعبير جدول خارجي ضمن استعلام.
SELECT <expr> APPLY( <func> ) FROM [db.]table_name
CREATE TABLE columns_transformers (i Int64, j Int16, k Int64) ENGINE = MergeTree ORDER by (i); INSERT INTO columns_transformers VALUES (100, 10, 324), (120, 8, 23); SELECT * APPLY(sum) FROM columns_transformers;
┌─sum(i)─┬─sum(j)─┬─sum(k)─┐ │ 220 │ 18 │ 347 │ └────────┴────────┴────────┘
هل كانت هذه الصفحة مفيدة؟