XLS-SQL logo
XLS-SQL

Safe sample data

Data file SQL examples you can run now

Download a small synthetic .xlsx demo—or use XLS, CSV, TSV, ODS, JSON, HTML, or Parquet data—run real PostgreSQL, and export the result. No signup or database setup.

Open XLS-SQL

Demo workbooks

These specific demo files use .xlsx and contain invented records with no personal information. They are intentionally small enough to make each query result easy to verify.

One-minute example

Upload the sales demo, copy the temporary table name shown by XLS-SQL, and replace the placeholder below. The query returns one revenue total per region.

SELECT region, SUM(revenue) AS total_revenue
FROM tbl_your_session
GROUP BY region
ORDER BY total_revenue DESC;
  • Preview the source rows before running SQL.
  • Review the grouped result in the browser.
  • Choose Download and select XLSX, CSV, TSV, ODS, JSON, JSONL, HTML, or Parquet.
Revenue grouped by region after querying an Excel demo with PostgreSQL
A real result from the synthetic sales demo.

Watch the workflow

The short recording shows upload → query → preview. It contains no customer data and has no audio.

Choose a practical recipe

Before using your own file

  • Supported imports include XLSX, XLS, CSV, TSV, ODS, JSON, HTML, and Parquet.
  • Spreadsheet imports use the first worksheet; each session contains one table.
  • The current limits are 200 MB and 200 columns, with no input row-count limit.
  • Files are processed server-side in temporary sessions.

FAQ

Are the demo files safe to share?

Yes. Their records are synthetic and created specifically for these examples.

Which export formats can I use?

Run a SELECT, choose XLSX, CSV, TSV, ODS, JSON, JSONL, HTML, or Parquet, and select Download.

Can I use the queries with my own columns?

Yes. Replace the table and column names with the SQL-safe names shown in your preview.