Member
aniya.jaskolski
How to get month in PostgreSQL?
daisha
@aniya.jaskolski To get the month in PostgreSQL, use the function:
1
EXTRACT(MONTH FROM TIMESTAMP)
This function takes a timestamp as an argument and returns the month as an integer (1 to 12) of the corresponding date.