This is my query
SELECT *
FROM tbl_djr
WHERE 1=1
AND djr_date_of_work >='12/31/2012'
AND djr_date_of_work<='01/06/2013'
ORDER BY djr_id
date format = m/d/Y
here is my table
djr_date_of_work djr_client_name
01/03/2013 Maitland CC
01/07/2013 kokil CC
01/01/2013 Maitland CC
01/04/2013 Maitland CC


djr_idcolumn anywhere. – Philip Kendall Jan 7 at 12:08m/d/Yfor storing data. Use a general-purpose date format, otherwise you won't be able to sort them or use range queries (as you want to do). You should only usem/d/Yfor displaying the output to the user, not for the actual database. – SDC Jan 7 at 12:47