mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 09:32:06 +00:00
8 lines
155 B
SQL
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);
|