SQL Result → Table Preview
Paste CSV, TSV, pipe-delimited, or JSON results and preview them as a styled table with inferred column types.
Preview (4 rows × 5 cols)
id integer | email text | created_at date | orders integer | active boolean |
|---|---|---|---|---|
| 1 | alice@example.com | 2024-01-15 | 12 | true |
| 2 | bob@example.com | 2024-02-03 | 3 | true |
| 3 | carol@example.com | 2024-03-22 | 0 | false |
| 4 | dave@example.com | 2024-04-10 | 7 | true |
Paste anything tabular
CSV, TSV, pipe-delimited, or JSON arrays of objects. The tool auto-detects the format. Column types are inferred per column — integer, decimal, boolean, date, or text.
Useful for
- Visualizing the output of a query you ran elsewhere
- Sanity-checking a sample dataset before wiring it up
- Sharing a tidy table screenshot
You might also like
- SQL INSERT GeneratorConvert CSV / TSV / JSON into INSERT INTO statements — multi-row VALUES or one statement per row.
- CSV ↔ JSON ConverterConvert CSV to JSON or JSON to CSV with quoted fields and configurable delimiters.
- JSON → Code ObjectRender a JSON sample as a literal in JS, TS, Python, PHP, Ruby, Go, Rust, and Java side by side.
- JSON → Struct / ClassGenerate typed declarations from JSON in TypeScript, Python @dataclass, PHP class, Ruby Struct, Go struct, Rust serde, and Java POJO.