This is the easiest way of getting data of particular month
Select * from table where extract(MONTH from column_name ) = 4; -- April
Column_name should be of date type or timestamp.
No comments:
Post a Comment