In MYSQL database, I have the date column which contains date in format [29-11-2012].
I would like to display the values based upon month selected by user via php page.
For Example, If user selects OCT then this should display all the other columns for this particular month.
Can you suggest SQL Query for this?
Thanks,
Shail
You can use
like this condition
Basically mysql stores dates in yyyy-mm-dd format only..