SQL {{ t("results.rows", n=outcome.total) }} {% if outcome.truncated %}({{ t("results.rows_shown", n=outcome.rows|length) }}){% endif %} {% if outcome.effective %} {# What the database really read, once the {...} references were resolved. #}
{{ t("results.sql_sent") }}
{{ outcome.effective }}
{% endif %}
{% if outcome.rows %}
{% for column in outcome.columns %}{% endfor %} {% for row in outcome.rows %} {% for value in row %}{% endfor %} {% endfor %}
{{ column }}
{{ "" if value is none else value }}
{% else %}
{{ t("results.empty") }}
{% endif %}