jsk_fellows (view)

3 rows where fellowship = "jsk-fellows2015" and location = "Palo Alto, CA"

View and edit SQL

Suggested facets: verified, created_at (date)

location

  • Palo Alto, CA · 3

fellowship

  • jsk-fellows2015 · 3
id name description location url fellowship followers_count created_at verified screen_name
7380872 Anne Kornblut director of news, new initiatives, Facebook. Palo Alto, CA http://www.facebook.com jsk-fellows2015 17974 2007-07-10T19:06:10+00:00 1 annekornblut
256498570 Christina Passariello Technology editor @WashingtonPost. Ex @WSJ. Former @JSKstanford Fellow. Parisian by adoption. Super Bowl halftime show performer. Palo Alto, CA   jsk-fellows2015 5168 2011-02-23T13:18:37+00:00 1 cpassariello
342455823 Louis Hansen Enterprise and housing reporter, Mercury News. I have lots of questions. @JSKstanford fellow, 2015 lhansen@ http://bayareanewsgroup.com Palo Alto, CA https://www.mercurynews.com/ jsk-fellows2015 1607 2011-07-26T01:36:26+00:00 0 HansenLouis

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