Share SQL queries, migration scripts, or schema definitions: highlighted, encrypted, and instantly shareable without spinning up a gist.
1WITH monthly_revenue AS (2 SELECT3 DATE_TRUNC('month', created_at) AS month,4 SUM(amount_cents) / 100.0 AS revenue,5 COUNT(DISTINCT customer_id) AS customers6 FROM orders7 WHERE status = 'completed'8 AND created_at >= NOW() - INTERVAL '12 months'9 GROUP BY 110),11ranked AS (12 SELECT13 month,14 revenue,15 customers,16 revenue - LAG(revenue) OVER (ORDER BY month) AS mom_delta,17 RANK() OVER (ORDER BY revenue DESC) AS revenue_rank18 FROM monthly_revenue19)20SELECT * FROM ranked21ORDER BY month DESC;Paste SQL code and get a shareable link with full syntax highlighting, server-side rendered with no JavaScript overhead.
Deleted on first open. Can't be viewed twice.
Add a password for end-to-end encryption with no raw key stored.
Set pastes to expire after 1 hour, 1 day, 7 days, or up to 30 days. Gone when you say so.
No sign-up, no email, no ads. Paste and share in seconds.
The generic SQL grammar highlights standard SQL, PostgreSQL, MySQL, SQLite, and BigQuery syntax. Dialect-specific keywords are highlighted as best-effort.
For embedded credentials, enable password protection and share the password separately. Non-password pastes are encrypted in your browser, but the raw data key is stored server-side for simple sharing and raw access.
No line limit: just a 5 MB file size cap, which covers any realistic SQL script.