Created
January 13, 2015 08:47
-
-
Save asgrim/740c90cde2ad37cd128e to your computer and use it in GitHub Desktop.
Export talks from OpenCFP
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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