Skip to content

Instantly share code, notes, and snippets.

@miguno
Created January 31, 2018 17:26
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 miguno/c1dd7697b67dd7b946b0b63a18255c0c to your computer and use it in GitHub Desktop.
Save miguno/c1dd7697b67dd7b946b0b63a18255c0c to your computer and use it in GitHub Desktop.
KSQL example for SELECT
SELECT user_id, page, action FROM clickstream c
LEFT JOIN users u ON c.user_id = u.user_id
WHERE u.level = 'Platinum';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment