ClickHouse/tests/queries/0_stateless/02504_bar_fractions.sql
2022-12-20 02:17:02 +01:00

8 lines
155 B
SQL

SELECT
number / 8 AS width,
bar(width, 0, 3, 3) AS b,
bar(width - 0.001, 0, 3, 3) AS `b_minus`,
hex(b),
hex(b_minus)
FROM numbers(20);