Adding a column to a tableDecember 18, 2024 · 4 min readIn this guide, we'll learn how to add a column to an existing table.
How to filter a ClickHouse table by an array-column?December 17, 2024 · 3 min readKnowledgebase article on how to filter a ClickHouse table by an array-column.
Can you PIVOT in ClickHouse?December 11, 2024 · 7 min readClickHouse doesn't have a PIVOT clause, but we can get close to this functionality using aggregate function combinators. Let's see how to do this using the UK housing prices dataset.
Why can't I see my data in a dictionary in ClickHouse Cloud?April 12, 2024 · 2 min readThere is an issue where data in dictionaries may not be visible immediately after creation.
How to Create a ClickHouse Dictionary with String Keys and ValuesJuly 10, 2023 · One min readLearn how to create a ClickHouse dictionary using string keys and values from a MergeTree table as the source, with examples of setup and usage.
Are Materialized Views inserted synchronously?March 1, 2023 · 2 min readThis KB article explores whether Materialized Views are inserted synchronously
How to confirm if a Projection is used by the query?July 10, 2022 · 2 min readLearn how to check if a projection is used in ClickHouse queries by testing with sample data and using EXPLAIN to verify projection usage.