jsk_fellows (view)

2 rows where fellowship = "jsk-fellows-2019" and location = "Washington, DC"

View and edit SQL

Suggested facets: created_at (date)

location

  • Washington, DC · 2

fellowship

  • jsk-fellows-2019 · 2
id name description location url fellowship followers_count created_at verified screen_name
16390952 Akilah Johnson Now: @propublica DC. Then: @JSKstanford @BostonGlobe @SunSentinel. Always: Telling untold stories. Retweets not endorsements. she/her 💙🐩💛 Washington, DC https://www.propublica.org/people/akilah-johnson jsk-fellows-2019 7696 2008-09-21T14:10:09+00:00 1 akjohnson1922
78114269 Marina Walker Executive editor @Pulitzercenter. Mother of 2, builder of teams & @JSKStanford 2019 fellow. Always, @ICIJorg Washington, DC http://www.pulitzercenter.org jsk-fellows-2019 9876 2009-09-28T20:31:14+00:00 0 MarinaWalkerG

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 67.801ms · About: simonw/jsk-fellows-on-twitter