Sorry guys mental block and cant get my head round this one, its only just started happening ?? I think!
I have a table which stores datetime values as one of its fields. I query the table as follows;
qh.Quote_Date = '20090108'
OR
and (qh.Quote_Date between '20090108' and '20090109')
But the incorrect number of rows are returned?
Also, programatical approach ...
Query text:
Select qh.username, count(qi.item_id) as Number_of_Quotes_Entered
from quotes.dbo.QUOTE_HEADER as qh inner join quotes.dbo.quote_item as qi on qh.quote_id = qi.quote_id
Where (qh.Quote_Date between @QuoteDateFrom and @QuoteDateTo)
Group By qh.USERNAME
order by Number_of_Quotes_Entered
SqlCommand.CommandText:
cmd.Parameters.Add("@QuoteDateFrom", SqlDbType.DateTime).Value = DateTimePicker1.Value.Date
cmd.Parameters.Add("@QuoteDateTo", SqlDbType.DateTime).Value = DateTimePicker2.Value.Date
Typical Field Value:
09/01/2009 16:16:32
Any ideas please?
Thanks very much
I have a table which stores datetime values as one of its fields. I query the table as follows;
qh.Quote_Date = '20090108'
OR
and (qh.Quote_Date between '20090108' and '20090109')
But the incorrect number of rows are returned?
Also, programatical approach ...
Query text:
Select qh.username, count(qi.item_id) as Number_of_Quotes_Entered
from quotes.dbo.QUOTE_HEADER as qh inner join quotes.dbo.quote_item as qi on qh.quote_id = qi.quote_id
Where (qh.Quote_Date between @QuoteDateFrom and @QuoteDateTo)
Group By qh.USERNAME
order by Number_of_Quotes_Entered
SqlCommand.CommandText:
cmd.Parameters.Add("@QuoteDateFrom", SqlDbType.DateTime).Value = DateTimePicker1.Value.Date
cmd.Parameters.Add("@QuoteDateTo", SqlDbType.DateTime).Value = DateTimePicker2.Value.Date
Typical Field Value:
09/01/2009 16:16:32
Any ideas please?
Thanks very much