Skip to content

Instantly share code, notes, and snippets.

@jonsterling
Forked from beckyconning/Markdown.md
Last active January 29, 2016 23:04
Show Gist options
  • Save jonsterling/424bcde2c772964758ff to your computer and use it in GitHub Desktop.
Save jonsterling/424bcde2c772964758ff to your computer and use it in GitHub Desktop.
discipline = __ (!`SELECT discipline FROM "/test/testDb/olympics" LIMIT 1`) year = __ (!`SELECT year FROM "/test/testDb/olympics" LIMIT 1`) country = {!`SELECT DISTINCT country FROM "/test/testDb/olympics"`} (!`SELECT country FROM "/test/testDb/olympics" LIMIT 1`) type = (!`SELECT DISTINCT type FROM "/test/testDb/olympics" LIMIT 1`) !`SELECT DISTINCT type FROM "/test/testDb/olympics" OFFSET 1` gender = [!`SELECT gender FROM "/test/testDb/olympics" LIMIT 1`] !`SELECT DISTINCT gender FROM "/test/testDb/olympics"`
SELECT * FROM "/test/testDb/olympics" WHERE discipline = :discipline AND type != :type AND gender IN :gender AND year > :year AND country = :country
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment