ClickHouse/docs/zh/query_language/functions/random_functions.md
2019-06-05 16:54:36 +08:00

22 lines
959 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# 随机函数
随机函数使用非加密方式生成伪随机数字。
所有随机函数都只接受一个参数或不接受任何参数。
您可以向它传递任何类型的参数,但传递的参数将不会使用在任何随机数生成过程中。
此参数的唯一目的是防止公共子表达式消除,以便在相同的查询中使用相同的随机函数生成不同的随机数。
## rand
返回一个UInt32类型的随机数字所有UInt32类型的数字被生成的概率均相等。此函数线性同于的方式生成随机数。
## rand64
返回一个UInt64类型的随机数字所有UInt64类型的数字被生成的概率均相等。此函数线性同于的方式生成随机数。
## randConstant
返回一个UInt32类型的随机数字该函数不同之处在于仅为每个数据块参数一个随机数。
[来源文章](https://clickhouse.yandex/docs/en/query_language/functions/random_functions/) <!--hide-->