Thunderbird/Support/Google Big Query Sample SQL queries

From MozillaWiki
< Thunderbird‎ | Support
Revision as of 18:54, 28 May 2025 by Rolandtb (talk | contribs) (Count All Thunderbird Questions in 2024)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Count All Thunderbird Questions in 2024

SELECT
  COUNT (*)
FROM
  moz-fx-data-sumo-prod.mzla.metrics_thunderbird_questions
WHERE
  EXTRACT(YEAR
  FROM
    DATETIME(created_utc)) = 2024
  AND product LIKE 'thunderbird'
;