jsk_fellows (view)

3 rows where location = "Minneapolis, MN"

View and edit SQL

Suggested facets: created_at (date)

location

  • Minneapolis, MN · 3
id name description location url fellowship followers_count created_at verified screen_name
14984915 Andrew Haeg Move fast & bake things. Journalist + entrepreneur. GroundSource (@groundsource). MN is 🏡. Minneapolis, MN http://groundsource.co jsk-fellows2009 4958 2008-06-02T20:53:25+00:00 0 andrewhaeg
23795899 Jim Walsh Mr. Brightside Minneapolis, MN   jsk-fellows2003 3132 2009-03-11T17:33:08+00:00 0 saintfabio
104733894 Eric Ortiz Editor @stadiumtalkcom @Granite_Media. Also @Lawatmargins Former @ESPN @NESN @JSKStanford @Truthdig. Founder @evrybit. #news #sports #journalism #storytelling Minneapolis, MN http://lawatthemargins.com/category/community-based-news-room-cbnr/ jsk-fellows2014 1055 2010-01-14T06:32:00+00:00 0 erictortiz

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