Skip to content

Instantly share code, notes, and snippets.

@harrigan
Last active December 14, 2015 16:39
Show Gist options
  • Save harrigan/5116646 to your computer and use it in GitHub Desktop.
Save harrigan/5116646 to your computer and use it in GitHub Desktop.
SELECT
sum(value)
FROM (
SELECT count(1) FROM myData WHERE appId = 0
UNION ALL
SELECT count(1) FROM myData WHERE appId = 9
) u;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment