jsk_fellows (view)

6 rows where location = "California, USA"

View and edit SQL

Suggested facets: verified, created_at (date)

location

  • California, USA · 6
id name description location url fellowship followers_count created_at verified screen_name
14370540 jeremyhay Journalist, entrepreneur, JSK Stanford fellow '15 California, USA http://www.jeremyhay.com jsk-fellows2015 897 2008-04-12T19:21:05+00:00 0 jeremyhay
24346858 J. Mariani-Belding Writer. Communicator. Marketer. Lover of good wine and cheese. Living my best life, with gratitude. California, USA   jsk-fellows2003 30 2009-03-14T08:10:36+00:00 0 jmbelding
56245064 Stephen Magagnini independent journalist covering ethnic affairs, race relations, immigration, tribal affairs, faith issues and human rights California, USA http://sacbee.com jsk-fellows2002 1124 2009-07-13T01:12:53+00:00 0 SteveMagagnini
105381785 Susanne Rust Investigative Reporter @latimes California, USA http://www.latimes.com/la-bio-susanne-rust-staff.html jsk-fellows2010 2012 2010-01-16T05:17:40+00:00 1 susrust
520989810 Divine Dube Local news #innovation geek. @JSKstanford Alum California, USA https://medium.com/@divine_dube jsk-fellows-2020 1591 2012-03-11T04:04:01+00:00 0 village_scribe
908496738 Deepa Fernandes Journalist, global & local, @kcrw @TheWorld. Fellow at Pacific Oaks College. I report about women, kids, migrants, the environment. Alum @jskstanford @IWMF. California, USA http://deepafernandes.com/ jsk-fellows2012 3062 2012-10-27T16:58:11+00:00 0 deepafern

Advanced export

JSON shape: default, array, newline-delimited

CSV options:

CREATE VIEW jsk_fellows AS 
    select
        users.id,
        users.name,
        users.description,
        users.location,
        users.url,
        'https://twitter.com/' || users.screen_name as twitter,
        group_concat(lists.slug) as fellowship,
        users.followers_count,
        users.created_at,
        users.verified,
        users.screen_name
    from users
        join list_members
            on list_members.user = users.id
        join lists
            on list_members.list = lists.id
    where
        lists.slug like 'jsk-fellows%'
        and lists.slug not like '%projects'
    group by users.id;
Powered by Datasette · Query took 66.825ms · About: simonw/jsk-fellows-on-twitter