Skip to content

Instantly share code, notes, and snippets.

@asgrim
Created January 13, 2015 08:47
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save asgrim/740c90cde2ad37cd128e to your computer and use it in GitHub Desktop.
Save asgrim/740c90cde2ad37cd128e to your computer and use it in GitHub Desktop.
Export talks from OpenCFP
SELECT
/* user */ users.id AS user_id, first_name, last_name, email, company, twitter, airport, url, transportation, hotel, info, bio,
/* talk */ talks.id AS talk_id, title, description, other, type, level, category, slides, desired, sponsor
FROM `talks`, `users`
WHERE talks.user_id = users.id
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment