From 21c240ec0cbef00d5928083f5fc936ec42542911 Mon Sep 17 00:00:00 2001 From: Lorenzo Mangani Date: Tue, 9 Jul 2024 19:17:05 +0200 Subject: [PATCH] Update README.md --- README.md | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 2daabd9..a312117 100644 --- a/README.md +++ b/README.md @@ -2,9 +2,21 @@ # DuckDB ClickHouse SQL extension -This DuckDB extension implements various macros using ClickHouse SQL syntax, making it easier to transition between the two database systems ⭐ designed for [Quackpipe](https://github.com/metrico/quackpipe) +This DuckDB extension implements various macros using ClickHouse SQL syntax, making it easier
+to transition between the two database systems ⭐ designed for [Quackpipe](https://github.com/metrico/quackpipe) + +
+ +## Installation + +**chsql** is distributed as a [DuckDB Community Extension](https://github.com/duckdb/community-extensions) and can be installed using SQL: -## Examples +```sql +INSTALL chsql FROM community; +LOAD chsql; +``` + +## Usage Examples ```sql -- Type conversion SELECT toInt32(123456789) as int32; @@ -66,6 +78,7 @@ Different tests can be created for DuckDB extensions. The primary way of testing make test ``` +