RE: [firebird-support] Re: selecting between dates with timestamps fields

2012-02-06 Thread Svein Erling Tysvær
I'm trying with (to get all records from Feb 2nd) where (MyTimeStamp between '02-01-2012 00:00:00' and '02-01-2012 23:59:59') it uses the index, but I don't get all the records My mistake!... that seems to work OK... Now I just wonder if that is the *best* way to do that... So far

[firebird-support] Re: selecting between dates with timestamps fields

2012-02-06 Thread tomsee7
--- In firebird-support@yahoogroups.com, Sergio H. Gonzalez shg_sistemas@... wrote: Hello! I have a timestamp field with an index how can I select the fields from a given date, but using the index? If I do: where ((cast (MyTimeStamp as date)) between :from_date and :to_date) I

[firebird-support] Re: selecting between dates with timestamps fields

2012-02-03 Thread Sergio
I'm trying with (to get all records from Feb 2nd) where (MyTimeStamp between '02-01-2012 00:00:00' and '02-01-2012 23:59:59') it uses the index, but I don't get all the records My mistake!... that seems to work OK... Now I just wonder if that is the *best* way to do that... So far I