I have database in Access and a Visual Studio WPF application. I want to create a query that treat only to hours (I mean that I don't care the date month/day/year -> I care only the hours. )
I create bar Chart that contain bars hours :
00:00:00 - 00:59:59 is the first bar
01:00:00 - 01:59:59 is the second bar
.
.
.
.
.
23:00:00 - 23:59:59 is the last bar
My try :
SELECT 
    Accurty
FROM 
    Ikun 
WHERE 
    Fall_Time >= '{*/*/* 00:00:00}' and Fall_Time <= '{*/*/* 00:59:59}'"
The result I want to get is a table that should be look like this : After query that gives the Accurty from the hours 10:00:00 - 10:59:59 for example :
My data base :
Number   Fall Time                     Acurrty
-------------------------------------------------------
1           01/01/2010 10:00:00          0.3   
2           15/03/2011 10:30:00          0.123   
3           31/01/1994 11:00:00          0.2   
Result :
     Acurrty
-----------------
      0.3   
      0.123   
 
     
    