Found {{ tables|length }} table{{ "s" if tables|length != 1 }} in schema {{ schema }}

{% for t in tables %} {% endfor %}
Table Name Type Columns
{{ t.table_name }} {{ t.table_type }} {% if t.columns %} {{ t.columns|length }} columns ({{ t.columns[:5]|map(attribute='column_name')|join(', ') }}{% if t.columns|length > 5 %}, ...{% endif %}) {% else %} - {% endif %}