| title | Home |
|---|---|
| layout | default |
| nav_order | 1 |
{% assign expert = site.pages | where: "name", "superdb-expert.md" | first %}for SuperDB {{ expert.superdb_version }}
Documentation, tutorials, and recipes for SuperDB.
- [Expert Guide]({% link docs/superdb-expert.md %}) — Comprehensive SuperSQL syntax reference covering data types, operators, expressions, aggregations, and more.
- [Upgrade Guide]({% link docs/zq-to-super-upgrades.md %}) — Migration guide for upgrading from zq to SuperDB, with all breaking changes documented.
Step-by-step tutorials covering common SuperDB patterns:
{% assign tutorials = site.pages | where_exp: "page", "page.parent == 'Tutorials'" | sort: "nav_order" %} {% for tutorial in tutorials %}
- [{{ tutorial.title }}]({{ tutorial.url | relative_url }}) {% endfor %}
Reusable SuperSQL functions and operators:
{% assign recipes = site.pages | where_exp: "page", "page.parent == 'Recipes'" | sort: "nav_order" %} {% for recipe in recipes %}
- [{{ recipe.title }}]({{ recipe.url | relative_url }}) {% endfor %}
Content is also available through the SuperDB MCP server for use with coding agents.
{% if site.data.versions %}Last updated: {{ site.data.versions.last_updated }}{% endif %}