SQL Editor
Advanced Monaco editor with IntelliSense, syntax highlighting, and query history
Duck-UI makes working with data easy. Run SQL queries directly in your browser with DuckDB WASM - no server required!
docker run --name duck-ui -p 5522:5522 \
ghcr.io/ibero-data/duck-ui:latest
Access at: http://localhost:5522
Duck-UI is a modern web interface for DuckDB, the fast in-process analytical database. It leverages DuckDB's WebAssembly capabilities to run entirely in your browser, providing a powerful SQL editor and data analysis platform without requiring any server infrastructure.
Analyze CSV, JSON, or Parquet files directly in your browser without uploading to a server:
SELECT product, SUM(sales) as total_sales
FROM read_csv('sales_data.csv')
GROUP BY product
ORDER BY total_sales DESC;
Test SQL queries and data transformations without setting up infrastructure:
-- Load data from URL
CREATE TABLE products AS
SELECT * FROM read_parquet('https://example.com/products.parquet');
-- Run analytics
SELECT category, AVG(price) as avg_price
FROM products
GROUP BY category;
Perfect environment for learning SQL with instant feedback and no setup:
We would like to thank our sponsors for their support:
Empowering businesses with data-driven solutions
Next-Gen Telecom Observability - qxip {quicksip} is an R&D Company pioneering Open-Source and Commercial Observability and Telecom Monitoring Technology development.
Duck-UI is open source software licensed under Apache 2.0.