Skip to content

Instantly share code, notes, and snippets.

@pcothenet
Last active August 29, 2015 14:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pcothenet/24afc49c41d5453c04bd to your computer and use it in GitHub Desktop.
Save pcothenet/24afc49c41d5453c04bd to your computer and use it in GitHub Desktop.
events_to_contacts
SELECT
*
FROM
events AS e
INNER JOIN
contacts AS c
ON e.contact_id = c.contact_id
LIMIT 1000;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment