How do I query DateTime database field within a certain range?
I am using SQL SERVER 2005
Error code below
SELECT * 
  FROM TABLENAME 
 WHERE DateTime >= 12/04/2011 12:00:00 AM 
   AND DateTime <= 25/05/2011 3:53:04 AM
Note that I need to get rows within a certain time range. Example, 10 mins time range.
Currently SQL return with Incorrect syntax near '12'."
 
     
     
     
     
     
     
     
     
     
     
    