en un clic
sql-reporting
Conventions and review steps for writing analytics SQL against the warehouse. Use whenever the task involves querying tables, building a report, or aggregating metrics.
Menu
Conventions and review steps for writing analytics SQL against the warehouse. Use whenever the task involves querying tables, building a report, or aggregating metrics.
Add or update translations for the Apache Airflow UI. Guides through setting up locales, scaffolding translation files, translating with locale-specific guidelines, and validating results. Use when working with i18n tasks in airflow-core/src/airflow/ui/public/i18n/locales/.
Track Airflow Improvement Proposal (AIP) implementation progress by comparing Confluence specs against codebase evidence. Use when asked to assess, report on, or compare AIP status.
| name | sql-reporting |
| description | Conventions and review steps for writing analytics SQL against the warehouse. Use whenever the task involves querying tables, building a report, or aggregating metrics. |
| license | Apache-2.0 |
Apply this skill before writing or running any analytics SQL so reports stay consistent and safe.
Use this skill when the task involves:
SELECT explicit column names, never SELECT *.order_count, not count(*)).LIMIT unless an aggregate already collapses
the result set.COUNT(DISTINCT ...) over a sub-query when de-duplicating.SELECT *.Return the final SQL in a fenced ```sql block, then one sentence describing what the query returns.