jsk_fellows (view)

3 rows where location = "San Francisco Bay Area"

View and edit SQL

Suggested facets: created_at (date)

location

  • San Francisco Bay Area · 3
id name description location url fellowship followers_count created_at verified screen_name
18862139 maureenfan Researching a family memoir about my grandfather's legacy and a long-lost aunt. Former Knight Fellow, ex-WashPost Beijing correspondent. RT ≠ endorsement. San Francisco Bay Area http://www.maureenfan.com jsk-fellows2010 1455 2009-01-11T09:26:43+00:00 0 maureenfan
77842540 Katherine Ellison #Author of #Mothers & #Murderers The #MommyBrain: How #Motherhood Makes You Smarter, #Pulitzer prize winning #journalist #editor + #publicspeaker San Francisco Bay Area http://www.katherineellison.com jsk-fellows2000 1142 2009-09-27T21:48:12+00:00 0 kathellison
165426547 Jeremy Adam Smith I edit @greatergoodsc & write for @SFPublicPress @sciam & more. Former @JSKstanford. Contact: jeremysmith (at) http://berkeley.edu San Francisco Bay Area   jsk-fellows2011 4530 2010-07-11T14:48:53+00:00 0 jeremyadamsmith

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