vote up 0 vote down star

Hi All,

I want to compare two dates with time, I want all the results from tbl where date1 > date2

Select * From temp where mydate > '2009-06-29 04:00:44';

but it is just comparing dates not time. it is giving me all the result set of today's date

'2009-06-29 11:08:57'
'2009-06-29 11:14:35'
'2009-06-29 11:12:38'
'2009-06-29 11:37:48'
'2009-06-29 11:52:17'
'2009-06-29 12:12:50'
'2009-06-29 12:13:38'
'2009-06-29 12:19:24'
'2009-06-29 12:27:25'
'2009-06-29 12:28:49'
'2009-06-29 12:35:54'
'2009-06-29 12:36:54'
'2009-06-29 12:49:57'
'2009-06-29 12:58:04'
'2009-06-29 04:13:20'
'2009-06-29 04:56:19'
'2009-06-29 05:00:23'
'2009-06-29 05:04:26'
'2009-06-29 05:08:17'
'2009-06-29 05:26:57'
'2009-06-29 05:29:06'
'2009-06-29 05:32:11'
'2009-06-29 05:52:07'

Thanks in advance!

flag

63% accept rate
4  
There's no result there that's less than '2009-06-29 04:00:44';, so it seems your code is working, or am I missing something? – Jeremy Jun 29 at 12:31
I want these dates as Output not before that '2009-06-29 04:56:19' '2009-06-29 05:00:23' '2009-06-29 05:04:26' '2009-06-29 05:08:17' '2009-06-29 05:26:57' '2009-06-29 05:29:06' '2009-06-29 05:32:11' '2009-06-29 05:52:07' – MySQL DBA Jun 29 at 12:35
1  
Um... You don't have any visible from before that. It seems you're suggesting '2009-06-29 11:08:57' comes before '2009-06-29 04:00:44'. 4AM comes before 11am, and therefore you're seeing that 11am is greater than 4am. Again, am I missing something? – Jeremy Jun 29 at 12:39
2009-06-29 04:00:44' this is 4PM, so i dont want 11AM records. can i get them – MySQL DBA Jun 29 at 12:41
2  
Nope! 4pm is 16:00:00 :) 4am is 04:00:00. – Jeremy Jun 29 at 12:42
show 2 more comments

3 Answers

vote up 4 vote down check

The query you want to show as an example is:

Select * From temp where mydate > '2009-06-29 16:00:44';

04:00:00 is 4am, so all the results you're displaying come after that, which is correct.

If you want to show everything after 4pm, you need to use the correct (24h) notation in your query.

To make things a bit clearer, try this:

select mydate, date_format(mydate, '%r') from temp

That will show you the date, and its 12h time.

link|flag
vote up 0 vote down

Your query apparently returned all correct dates, even considering the time.

If you're still not happy with the results, give DATEDIFF a shot and look for negaive/positive results between the two dates.

Make sure your mydate column is a datetime type.

link|flag
vote up 0 vote down

Do you mean ordering it?

Select * From temp where mydate > '2009-06-29 04:00:44' ORDER BY mydate;

link|flag
no i want only datetime after '2009-06-29 04:00:44' – MySQL DBA Jun 29 at 12:38
That's what you've got. – alexn Jun 29 at 12:39
no i m getting all the result set for todays date not after the datetime i have specified for ex:- the time i have given is 4PM and i am getting 11AM records in that. – MySQL DBA Jun 29 at 12:43
The time you've given is 4am. – Jeremy Jun 29 at 12:44
Try 'Select * From temp where mydate > '2009-06-29 16:00:44';' – Erik Jun 29 at 12:47

Your Answer

Get an OpenID
or

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