{% if result_type == "table" %}
{% if truncated %}Showing first {{ row_count }} rows (truncated) {% else %}{{ row_count }} row{{ row_count|pluralize }}{% endif %}
{% for label, field in columns_meta %}{% endfor %} {% for row in rows %} {% for cell in row %}{% endfor %} {% endfor %}
{{ label }}
{{ cell }}
{% elif result_type == "empty" %}

0 rows returned

{% elif result_type == "value" %}
{{ value }}
{% endif %}