jsk_fellows (view)

3 rows where location = "Silicon Valley"

View and edit SQL

Suggested facets: created_at (date)

location

  • Silicon Valley · 3
id name description location url fellowship followers_count created_at verified screen_name
18433533 Janet Rae-Dupree Freelance Unboxed Media writer covering innovation, emerging tech, science and more #Binders Silicon Valley http://www.linkedin.com/in/jraedupree jsk-fellows2006 2473 2008-12-28T20:25:40+00:00 0 jraedupree
55273455 Christianne Gonzalez Online media consultant Silicon Valley http://www.brasilnewscom.com jsk-fellows2007 66 2009-07-09T15:52:45+00:00 0 brasilnewscom
141222005 Teresa Bouza Innovation, Media, Tech || Knight Fellow '12 @Stanford || Columbia J-School '04 || 2012 IWMF grantee || Co-author of "A Sense of Something Greater" (Sept. 2018) Silicon Valley http://goo.gl/UCfsJc jsk-fellows2012 1026 2010-05-07T13:49:50+00:00 0 TereBouza

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