Documentation IndexFetch the complete documentation index at: /docs/llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /docs/llms.txt
Use this file to discover all available pages before exploring further.
توثيق يصف مُعدِّل 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 │ └────────┴────────┴────────┘
هل كانت هذه الصفحة مفيدة؟