Guides

Practical SQL guides for local file analysis

Learn how to query CSV, JSON, and Parquet files with SQL in the browser. These guides focus on real file-analysis workflows, privacy-aware usage, DuckDB WASM, and reusable SQL examples.

CSV, JSON, ParquetLocal browser analysisSQL examples
Learn SQLUpdated 2026-05-09

What Is a Database Table? Rows, Columns, and the Mental Model Behind SQL

Before SQL feels natural, you need one simple mental model: tables are structured collections of records with predictable columns.

Read guide
Learn SQLUpdated 2026-05-09

SQL Data Types Explained: Text, Numbers, Dates, and Better Questions

Data types are the reason SQL knows the difference between a name, a salary, and a hire date — and that difference shapes every query you write.

Read guide
Learn SQLUpdated 2026-05-09

SQL NULL Explained: How Missing Values Work and Why They Matter

NULL is SQL's way of saying a value is missing or unknown — and it behaves differently from almost every other value beginners expect.

Read guide
CSV analysisUpdated 2026-05-02

How to Query CSV Files with SQL in Your Browser

Use SQL for Files as a local CSV analysis workspace: add a file, inspect the generated table, write SQL, and export the rows you need.

Read guide
JSON analysisUpdated 2026-05-02

How to Analyze JSON Files Locally with SQL

Load JSON or NDJSON into a local DuckDB table, then use SQL to inspect records, filter fields, and work with nested values.

Read guide
Parquet analysisUpdated 2026-05-02

How to Query Parquet Files in the Browser

Use browser-based DuckDB to inspect Parquet files, run fast analytical queries, and export compact results without a local database install.

Read guide
SQL examplesUpdated 2026-05-02

Practical SQL Examples for CSV, JSON, and Parquet Files

A compact collection of SQL patterns you can adapt for local file analysis in SQL for Files.

Read guide
DuckDB WASMUpdated 2026-05-02

What Is DuckDB WASM and Why Use It for Browser SQL?

DuckDB WASM brings an analytical SQL engine into the browser, enabling local file analysis without a server-side database.

Read guide
PrivacyUpdated 2026-05-02

Private Local Data Analysis in the Browser

Understand the local processing model behind SQL for Files and how to work safely with sensitive CSV, JSON, and Parquet files.

Read guide