Baselight
Loading...Loading chart...
1SELECT 
2    CONCAT(i.year, ' / ', COALESCE(c.year, i.year + 26)) AS year,
3    c.monthly_active_crypto_addresses / 1000000 AS crypto_users_millions,
4    i.num_internet_users / 1000000 AS internet_users_millions,
5    c.year AS crypto_year,
6    i.year AS internet_year
7FROM 
8    "@owid.internet.owid_internet" i
9LEFT JOIN 
10    "@adlrocha.sandbox.a16z_crypto_wallets" c
11ON 
12    c.year - 26 = i.year  -- Align 2018 in crypto with 1992 in internet (26-year offset)
13WHERE 
14    i.country = 'World'
15    AND i.year BETWEEN 1990 AND 2010
16ORDER BY 
17    year;
yearcrypto_users_millionsinternet_users_millionscrypto_yearinternet_year
1990 / 2016null2.601283550262451null1990
1991 / 2017104.27053356170654320171991
1992 / 2018156.892745971679687520181992
1993 / 20192010.00923919677734420191993
1994 / 20203020.4608230590820320201994
1995 / 20215039.33786773681640620211995
1996 / 20226077.4987945556640620221996
1997 / 202380121.0254592895507820231997
1998 / 2024250188.6567230224609420241998
1999 / 2025null282.09771728515625null1999
2000 / 2026null416.20233154296875null2000
2001 / 2027null503.7448425292969null2001
2002 / 2028null666.6359252929688null2002
2003 / 2029null783.0179443359375null2003
2004 / 2030null915.7938842773438null2004
2005 / 2031null1032.4852294921875null2005
2006 / 2032null1162.59521484375null2006
2007 / 2033null1375.4188232421875null2007
2008 / 2034null1574.693115234375null2008
2009 / 2035null1772.0155029296875null2009
2010 / 2036null2022.0941162109375null2010

Share link

Anyone who has the link will be able to view this.