{% extends "base.html" %} {% block title %}SQL Sandbox — Data Canvas — ICDEV{% endblock %} {% block content %}
Dashboard Explore Query Quality Assessments

SQL Sandbox

Read-only SQL editor — SELECT/WITH/EXPLAIN only. Results inherit your design's classification. Max {{ 1000 }} rows returned.

Connection

Query History

{% for h in history %}
{{ h.sql_text[:60] }}{% if h.sql_text|length > 60 %}…{% endif %}
{{ h.row_count }} rows {{ h.exec_ms }}ms {{ h.created_at[:10] if h.created_at else '' }}
{% else %}
No history yet.
{% endfor %}

SQL Editor

Ctrl+Enter to run — SELECT, WITH, EXPLAIN only — max 1,000 rows

Results

Run a query to see results here.
{% endblock %}