About CSV & SQL Data Playground
Drop a CSV, TSV, JSON or Parquet file and query it with real SQL, powered by DuckDB compiled to WebAssembly. Because the file is read directly off your disk in byte ranges rather than uploaded or loaded into memory, it handles files in the hundreds of megabytes — well past Excel's 1,048,576-row limit — and nothing ever leaves your machine.
Spreadsheet software hits a wall long before your data does. Excel stops at 1,048,576 rows, and Google Sheets far sooner — so the moment an export grows past a few hundred thousand records, the usual workflow is to upload it somewhere, wait, and hope the service is trustworthy. This tool removes that step entirely: the file is read straight off your disk and queried in place.
It runs DuckDB, a column-oriented analytical database, compiled to WebAssembly. Crucially the file is never loaded into memory in one piece — the engine reads byte ranges on demand as a query needs them, which is what makes files in the hundreds of megabytes practical inside a browser tab. Your data never touches a network, so there is no upload wait, no size cap imposed by someone else, and nothing to delete afterwards.