Created
March 12, 2020 04:32
-
-
Save jaeinkim/4f971728a9fdcd53ac142c34188e76fa 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 TO_CHAR(SALES_DATE, 'YYYY-MM') YYYYMM | |
| ,COUNT(*) COUNT | |
| FROM ORA_USER.SALES | |
| GROUP BY TO_CHAR(SALES_DATE, 'YYYY-MM') | |
| ORDER BY 1 | |
| ; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment