79376088

Date: 2025-01-21 22:30:27
Score: 2
Natty:
Report link

You should be able to use the YEAR and MONTH functions in SQL to create separate columns for year and month, something like this:

SELECT DISTINCT

YEAR(date_column) as YEAR,

MONTH(date_column) as Month

FROM

TABLE

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Aaron