Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to query for timestamp data type in db2. I wrote query below

Select * from sample where LASTMODIFIEDDATE = timestamp('2012-04-03 07:59:50')

I didn't get any result for above query , then I tried

Select * from sample where LASTMODIFIEDDATE > timestamp('2012-04-03 07:59:50')

In above query I got results matching timestamp '2012-04-03 07:59:50' plus for greater values of timestamp, e.g '2012-04-03 08:59:50'.

If I am getting results for '>' operator then why not I am not getting any results for '=' operator ? Any reasons or am I writing wrong query ?

Thanks !

share|improve this question
1  
A timestamp includes fractional seconds, are there any in your column? – Ben Jun 24 '12 at 17:52
No, there are no fractional seconds. – Sachin Doiphode Jun 25 '12 at 3:43
@Ben :: Apparently timestamp column shows value '2012-04-03 07:59:50', Does db2 truncate fractional value and then store in database ? – Sachin Doiphode Jun 25 '12 at 5:51

1 Answer

up vote 2 down vote accepted

No, DB2 stores the full value of the timestamp, including the fractional seconds. You may wish to change the format the system displays timestamps in to something that includes milliseconds.

Try using this instead:

SELECT * 
FROM Sample
WHERE lastModifiedDate >= TIMESTAMP('2012-04-03 07:59:50')
AND lastModifiedDate < TIMESTAMP('2012-04-03 07:59:50)' + 1 SECONDS

Unless you have the full value of the timestamp, including milliseconds, you're going to be getting a range - when accessing a range of data, use 'lower-bound inclusive, upper-bound exclusive'.

share|improve this answer
Thanks @X-Zero I am getting results after trying query by you – Sachin Doiphode Jun 26 '12 at 16:59
:: One more question, what is upperbound for 24 hr clock , is it 23.59.59 ? – Sachin Doiphode Jun 26 '12 at 17:00
23:59:59.999999, yes (no milliseconds on TIME, but this is why you do upper-bound exclusive obviously). As a note, this is the upper bound for this type on DB2 only - other RDBMSs have similar/identical types that record to different resolutions, so you can't rely on what the 'exact' value will be. So, always use the range like I've specified, and you'll always (near as I know) be good. – Clockwork-Muse Jun 26 '12 at 19:21

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.