Sample queries

From the twitter thread: https://twitter.com/rtanglao/status/1522384229966835712

  1. How many Firefox Desktop SUMO questions in English were asked by Windows users in 2021? Answer: 16501
    select count(id) from [2021-yearly-ff-questions-en-us] where tags like "%windows-%"
    
  2. How many Firefox Desktop SUMO questions in English were asked by Linux users in 2021? Answer: 1601
    select count(id) from [2021-yearly-ff-questions-en-us] where tags like "%linux%"
    
  3. How many Firefox Desktop SUMO questions in English were asked by Linux users in 2021? Answer: 25 (although I’m sure lots of the 1601”linux” users were ubuntu users!)
    select count(id) from [2021-yearly-ff-questions-en-us] where tags like "%ubuntu%"
    
  4. How many Firefox SUMO support questions mentioned the word virus? Answer 37. Editorial :-) —> AV is such a waste! Please use what’s built into Windows or macOS or switch to Linux :-) Educated guess, based on working on Firefox support for >5 years, is that at least 10x or more people have an antiv*rus issue which cause them to stop using Firefox.
    select * from [2021-yearly-ff-questions-en-us] 
    where tags like "%virus%" or title like "%virus%" 
    order by id
    

Leave a comment on github