* split up select.md * array-join.md basic refactoring * distinct.md basic refactoring * format.md basic refactoring * from.md basic refactoring * group-by.md basic refactoring * having.md basic refactoring * additional index.md refactoring * into-outfile.md basic refactoring * join.md basic refactoring * limit.md basic refactoring * limit-by.md basic refactoring * order-by.md basic refactoring * prewhere.md basic refactoring * adjust operators/index.md links * adjust sample.md links * adjust more links * adjust operatots links * fix some links * adjust aggregate function article titles * basic refactor of remaining select clauses * absolute paths in make_links.sh * run make_links.sh * remove old select.md locations * translate docs/es * translate docs/fr * translate docs/fa * remove old operators.md location * change operators.md links * adjust links in docs/es * adjust links in docs/es * minor texts adjustments * wip * update machine translations to use new links * fix changelog * es build fixes * get rid of some select.md links * temporary adjust ru links * temporary adjust more ru links * improve curly brace handling * adjust ru as well * fa build fix * ru link fixes * zh link fixes * temporary disable part of anchor checks
7.4 KiB
machine_translated | machine_translated_rev | toc_priority | toc_title |
---|---|---|---|
true | 72537a2d52 |
58 | Harici Sözlüklerle çalışma |
Harici Sözlüklerle çalışmak için işlevler
Dış sözlükleri bağlama ve yapılandırma hakkında bilgi için bkz. Dış söz dictionarieslükler.
dictGet
Harici bir sözlükten bir değer alır.
dictGet('dict_name', 'attr_name', id_expr)
dictGetOrDefault('dict_name', 'attr_name', id_expr, default_value_expr)
Parametre
dict_name
— Name of the dictionary. String lit literal.attr_name
— Name of the column of the dictionary. String lit literal.id_expr
— Key value. İfade dönen bir Uİnt64 veya Demet- sözlük yapılandırmasına bağlı olarak değer yazın.default_value_expr
— Value returned if the dictionary doesn't contain a row with theid_expr
anahtar. İfade veri türü için yapılandırılmış değeri döndürmeattr_name
nitelik.
Döndürülen değer
-
ClickHouse özniteliği başarıyla ayrıştırırsa öznitelik veri türü, fonksiyonlar karşılık gelen sözlük özniteliğinin değerini döndürür
id_expr
. -
Anahtar yoksa, karşılık gelen
id_expr
, söz thelükte, sonra:- `dictGet` returns the content of the `<null_value>` element specified for the attribute in the dictionary configuration. - `dictGetOrDefault` returns the value passed as the `default_value_expr` parameter.
Clickhouse, özniteliğin değerini ayrıştıramazsa veya değer öznitelik veri türüyle eşleşmiyorsa bir özel durum atar.
Örnek
Metin dosyası oluşturma ext-dict-text.csv
aşağıdakileri içeren:
1,1
2,2
İlk sütun id
ikinci sütun c1
.
Dış sözlüğü yapılandırma:
<yandex>
<dictionary>
<name>ext-dict-test</name>
<source>
<file>
<path>/path-to/ext-dict-test.csv</path>
<format>CSV</format>
</file>
</source>
<layout>
<flat />
</layout>
<structure>
<id>
<name>id</name>
</id>
<attribute>
<name>c1</name>
<type>UInt32</type>
<null_value></null_value>
</attribute>
</structure>
<lifetime>0</lifetime>
</dictionary>
</yandex>
Sorguyu gerçekleştir:
SELECT
dictGetOrDefault('ext-dict-test', 'c1', number + 1, toUInt32(number * 10)) AS val,
toTypeName(val) AS type
FROM system.numbers
LIMIT 3
┌─val─┬─type───┐
│ 1 │ UInt32 │
│ 2 │ UInt32 │
│ 20 │ UInt32 │
└─────┴────────┘
Ayrıca Bakınız
dictHas
Bir anahtar sözlükte mevcut olup olmadığını denetler.
dictHas('dict_name', id_expr)
Parametre
dict_name
— Name of the dictionary. String lit literal.id_expr
— Key value. İfade dönen bir Uİnt64- tip değeri.
Döndürülen değer
- 0, anahtar yoksa.
- 1, bir anahtar varsa.
Tür: UInt8
.
dictGetHierarchy
Bir anahtarın tüm ebeveynlerini içeren bir dizi oluşturur. hiyerarş dictionaryik sözlük.
Sözdizimi
dictGetHierarchy('dict_name', key)
Parametre
dict_name
— Name of the dictionary. String lit literal.key
— Key value. İfade dönen bir Uİnt64- tip değeri.
Döndürülen değer
- Anahtar için ebeveynler.
Tür: Dizi (Uİnt64).
dictİsİn
Sözlükteki tüm hiyerarşik zincir boyunca bir anahtarın atasını kontrol eder.
dictIsIn('dict_name', child_id_expr, ancestor_id_expr)
Parametre
dict_name
— Name of the dictionary. String lit literal.child_id_expr
— Key to be checked. İfade dönen bir Uİnt64- tip değeri.ancestor_id_expr
— Alleged ancestor of thechild_id_expr
anahtar. İfade dönen bir Uİnt64- tip değeri.
Döndürülen değer
- 0, eğer
child_id_expr
bir çocuk değil miancestor_id_expr
. - 1, Eğer
child_id_expr
bir çocukancestor_id_expr
veya eğerchild_id_expr
is anancestor_id_expr
.
Tür: UInt8
.
Diğer Fonksiyonlar
ClickHouse sözlük yapılandırma ne olursa olsun belirli bir veri türü için sözlük öznitelik değerlerini dönüştürmek özel işlevleri destekler.
İşlevler:
dictGetInt8
,dictGetInt16
,dictGetInt32
,dictGetInt64
dictGetUInt8
,dictGetUInt16
,dictGetUInt32
,dictGetUInt64
dictGetFloat32
,dictGetFloat64
dictGetDate
dictGetDateTime
dictGetUUID
dictGetString
Tüm bu işlevler OrDefault
değişiklik. Mesela, dictGetDateOrDefault
.
Sözdizimi:
dictGet[Type]('dict_name', 'attr_name', id_expr)
dictGet[Type]OrDefault('dict_name', 'attr_name', id_expr, default_value_expr)
Parametre
dict_name
— Name of the dictionary. String lit literal.attr_name
— Name of the column of the dictionary. String lit literal.id_expr
— Key value. İfade dönen bir Uİnt64- tip değeri.default_value_expr
— Value which is returned if the dictionary doesn't contain a row with theid_expr
anahtar. İfade veri türü için yapılandırılmış bir değer döndürmeattr_name
nitelik.
Döndürülen değer
-
ClickHouse özniteliği başarıyla ayrıştırırsa öznitelik veri türü, fonksiyonlar karşılık gelen sözlük özniteliğinin değerini döndürür
id_expr
. -
İsten nomiyorsa
id_expr
söz thelükte o zaman:- `dictGet[Type]` returns the content of the `<null_value>` element specified for the attribute in the dictionary configuration. - `dictGet[Type]OrDefault` returns the value passed as the `default_value_expr` parameter.
Clickhouse, özniteliğin değerini ayrıştıramazsa veya değer öznitelik veri türüyle eşleşmiyorsa bir özel durum atar.