hi,
i have a column containing date(24-Jan-10) in the mysql.
i wish to extract related data by month.
i do not want to add another column in the db for storing month.
How can i do so?
$sql = "SELECT * FROM table WHERE receive_date='Jan' "; ??
regards