jsk_fellows (view)

5 rows where fellowship = "jsk-fellows2012" and verified = 1

View and edit SQL

Suggested facets: created_at (date)

verified

fellowship

  • jsk-fellows2012 · 5
id name description location url fellowship followers_count created_at verified screen_name
5202671 Martyn Williams North Korea-focused journalist/researcher @NorthKoreaTech @38NorthNK. Non-resident fellow @stimsoncenter. Author @committeeHRNK. Also KJ6SDF. Washington, DC http://www.northkoreatech.org jsk-fellows2012 24339 2007-04-19T08:11:12+00:00 1 martyn_williams
16259364 Michelle Holmes 📍 Free human, looking for adventure Indiana, USA https://www.linkedin.com/in/michelle-holmes-924b2b11/ jsk-fellows2012 4655 2008-09-12T17:26:14+00:00 1 mlh_holmes
39021657 Anita Zielina Innovation, product, biz models, change in digital/media. 💪 Training innovative leaders @newmarkjschool. Alum @insead @jskstanford @nzz @sternde @derstandardat New York, USA https://www.journalism.cuny.edu/executive-ed jsk-fellows2012 46520 2009-05-10T09:02:13+00:00 1 Zielina
70574113 Djordje Padejski @JSKStanford Associate Director, investigative/data journalist, @ICIJorg member, @FOIAMACHINE founder, alum: @CIRonline @OCCRP @CINSerbia Stanford, CA http://jsk.stanford.edu jsk-fellows2012 2197 2009-09-01T02:29:07+00:00 1 djordjepadejski
264340567 T. Christian Miller Senior investigative reporter @Propublica. Co-author of http://afalsereport.com. Into journalism that counts. And bacon. Pulitzer winner. Berkeley, CA http://www.propublica.org jsk-fellows2012 8847 2011-03-11T19:00:34+00:00 1 txtianmiller

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