Skip to content

Commit b3860a5

Browse files
AI Translate 01-bitmap-functions to Simplified-Chinese (from #2940) (#2942)
* [INIT] Start translation to Simplified-Chinese * 🌐 Translate bitmap-to-array.md to Simplified-Chinese * chore: finalize translation for PR #2940 --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 6fadaa3 commit b3860a5

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
---
2+
title: BITMAP_TO_ARRAY
3+
---
4+
5+
将位图(Bitmap)转换为数组(Array)。
6+
7+
## 语法
8+
9+
```sql
10+
BITMAP_TO_ARRAY( <bitmap> )
11+
```
12+
13+
## 返回类型
14+
15+
`Array(UInt64)`
16+
17+
## 示例
18+
19+
```sql
20+
SELECT BITMAP_TO_ARRAY(TO_BITMAP('1, 3, 5'));
21+
22+
╭───────────────────────────────────────╮
23+
│ bitmap_to_array(to_bitmap('1, 3, 5')) │
24+
├───────────────────────────────────────┤
25+
│ [1,3,5] │
26+
╰───────────────────────────────────────╯
27+
```

0 commit comments

Comments
 (0)