I experiencing problem in executing query on between date command. I got wrong result.
SELECT approval_date
FROM itemdetail
WHERE approval_date BETWEEN '01/01/2011' AND '15/01/2011'
My Record in Mysql Database:
|Approval Date|
05/01/2011
10/12/2010
12/12/2010
15/12/2010
10/01/2011
|Result|
Like above
Need result
|Approval Date|
05/01/2011
10/10/2011
Anyone could help me. how to get the needed result. sorry am still new in mysql.
Thanks