{% if error %}
Error: {{ error }}
{% elif result is not none %}

{{ result|length }} row{{ "s" if result|length != 1 else "" }} {% if elapsed_ms is not none %}— {{ elapsed_ms }} ms{% endif %}

{% for col in columns %} {% endfor %} {% for row in result %} {% for col in columns %} {% endfor %} {% endfor %}
{{ col }}
{{ row[col] if row[col] is not none else "" }}
{% else %}

Enter a SQL query and click Run to see results.

{% endif %}