Paste your SQL query output, get a Markdown table. Works with MySQL, PostgreSQL, SQLite -- any pipe or tab-separated result.
Markdown output will appear here
Paste SQL output on the left to see conversion
You ran a SELECT query and now you want to include the results in your docs. Manually converting those pipe-separated rows into Markdown is annoying work. Paste your terminal output here and get a properly formatted Markdown table in one step. I use this constantly for database documentation and architecture decision records. For API data instead of SQL output, try the JSON to Markdown converter.
Your query results might have customer names, order amounts, or internal metrics. All the processing happens in your browser. Nothing gets sent to a server. You can safely paste production query output without worrying about data leaks.
MySQL CLI, psql, sqlite3, MySQL Workbench, pgAdmin, DBeaver, DataGrip -- if it outputs text with pipes or tabs between columns, this tool can parse it. Divider rows get stripped automatically. You can also convert to other formats with CSV to Markdown or export to spreadsheets with JSON to Excel.
Run DESCRIBE on your table or query information_schema, copy the output, and paste it here. Now you've got a Markdown table showing column names, types, and constraints that you can put straight into your project's docs or wiki.
On-call runbooks need example outputs from health check queries. Run the query, convert the output to Markdown, and include it in your runbook. When someone at 3am is following the playbook, they'll know exactly what "healthy" output looks like.
Reviewing a migration script? Include a "before" and "after" Markdown table in your PR description showing what the query returns. Reviewers can see the expected output without running the query themselves. Saves a round of back-and-forth.
If you write about SQL -- blog posts, tutorials, Stack Overflow answers -- you need to show query results. Run the query, paste the output here, and get a Markdown table that renders nicely on any platform. Looks way better than a code block with fixed-width text.
API response JSON to Markdown tables
Comma-separated data to Markdown
Tab-separated values to Markdown tables
Markdown tables to downloadable spreadsheets
JSON data to .xlsx spreadsheet files
Spreadsheets to Markdown table format