jsk_fellows (view)

3 rows where location = "NYC"

View and edit SQL

Suggested facets: created_at (date)

location

id name description location url fellowship followers_count created_at verified screen_name
14715942 Umbreen Bhatti Director of @barnard_athena || Fmr Director of @KQED's innovation lab, @JSKStanford fellow, and lawyer. Tweets 100% mine. NYC https://www.linkedin.com/in/umbreenbhatti jsk-fellows2014 1993 2008-05-09T17:44:15+00:00 0 ub14
15587316 JocelynNoveckAP Associated Press national culture and feature writer NYC   jsk-fellows1996 867 2008-07-24T19:25:41+00:00 0 JocelynNoveckAP
24808107 teru kuwayama Seeker. Ex-IG/FB, JSK Fellow at Stanford, Ochberg Fellow at Dart Center for Journalism and Trauma, Senior TED Fellow, Hoover Institution media fellow. NYC http://www.about.me/terukuwayama jsk-fellows2010 2423 2009-03-17T00:48:13+00:00 0 terukuwayama

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