jsk_fellows (view)

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

View and edit SQL

Suggested facets: created_at (date)

location

  • Washington, DC · 2

fellowship

  • jsk-fellows2016 · 2
id name description location url fellowship followers_count created_at verified screen_name
14381600 Tracie Powell Connector. Change maker. Founder. Passionate about all things digital & media. Program Officer, Borealis Philanthropy & 2016 JSK Fellow. RT ≠ endorsement Washington, DC http://www.alldigitocracy.org jsk-fellows2016 3059 2008-04-14T05:29:35+00:00 0 TMPowell
22167981 Craig Timberg Longtime WashPost reporter, editor and author now covering technology Washington, DC https://www.washingtonpost.com/people/craig-timberg/?utm_term=.62c2bd0c02da jsk-fellows2016 4923 2009-02-27T18:02:48+00:00 0 craigtimberg

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