jsk_fellows (view)

3 rows where fellowship = "jsk-fellows2000" and location = "" sorted by name

View and edit SQL

Suggested facets: description, verified, created_at (date)

location

fellowship

  • jsk-fellows2000 · 3
id name ▼ description location url fellowship followers_count created_at verified screen_name
17455049 George Haj President, @hajmediainc, a strategic communications firm. Recovering journalist. Former @miamiherald, @jskstanford, @ALMMedia, @houstonchron   http://hajmedia.com jsk-fellows2000 3070 2008-11-18T00:57:30+00:00 1 georgehaj
1892710843 Rita Neubauer       jsk-fellows2000 24 2013-09-22T06:12:57+00:00 0 ritaneubauer
1522716182 Sarah T. Williams       jsk-fellows2000 32 2013-06-16T17:16:34+00:00 0 sarahtwilliams1

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