docs: document duckdb support

This commit is contained in:
Andrey Avtomonov 2026-05-18 15:27:06 +02:00
parent 460c6fae63
commit 099c605dc5
11 changed files with 86 additions and 7 deletions

View file

@ -35,6 +35,9 @@ Quote SQL in shell scripts and when the query contains spaces or punctuation.
# Count rows in a table
ktx sql --connection warehouse "select count(*) from public.orders"
# Count rows in a DuckDB table
ktx sql --connection warehouse "select count(*) as rows from orders"
# Return a small result set
ktx sql \
--connection warehouse \