Created
January 28, 2015 14:56
-
-
Save koi8-r/46d9fac4d8b1e62913b6 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 | |
| COUNT(n), COUNT(m), COUNT(*) | |
| FROM( | |
| SELECT NULL AS n, 'n' AS m | |
| UNION ALL | |
| SELECT 2 AS n, 'n' AS m | |
| UNION ALL | |
| SELECT NULL AS n, 'n' AS m | |
| UNION ALL | |
| SELECT 4 AS n, 'n' AS m | |
| UNION ALL | |
| SELECT 5 AS n, NULL AS m | |
| )x |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment