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 →
값 그룹에서 가장 왼쪽 점과 가장 오른쪽 점 사이의 기울기를 계산하는 집계 함수입니다.
boundingRatio(x, y)
x
(U)Int*
Float*
Decimal
y
NaN
Float64
SELECT number, number * 1.5 FROM numbers(10)
┌─number─┬─multiply(number, 1.5)─┐ │ 0 │ 0 │ │ 1 │ 1.5 │ │ 2 │ 3 │ │ 3 │ 4.5 │ │ 4 │ 6 │ │ 5 │ 7.5 │ │ 6 │ 9 │ │ 7 │ 10.5 │ │ 8 │ 12 │ │ 9 │ 13.5 │ └────────┴───────────────────────┘
SELECT boundingRatio(number, number * 1.5) FROM numbers(10)
┌─boundingRatio(number, multiply(number, 1.5))─┐ │ 1.5 │ └──────────────────────────────────────────────┘
이 페이지가 도움이 되었나요?