I have a table setup as shown below.
Table Name: activity.
activity_id , Date , assign_engr , Task_Type , Task_Status
1 , 2013-12-31 , Sachin , Monthly , Scheduled
2 , 2013-12-23 , Mikel , Weekly , Done
3 , 2013-10-18 , John , Monthly , Done
I want to get data for the current month only using Date field as shown below:
select * from activity where Date='current month'
Can anyone help me with this query?