clickhouse-hello-world
Installation
SKILL.md
ClickHouse Hello World
Overview
Create a MergeTree table, insert rows with JSONEachRow, and run your first
analytical query -- all using the official @clickhouse/client.
Prerequisites
@clickhouse/clientinstalled and connected (seeclickhouse-install-auth)
Instructions
Step 1: Create a MergeTree Table
import { createClient } from '@clickhouse/client';
const client = createClient({
Related skills