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 !