H
haiwen
Hello, everyone,
I have table(t1) with one column endTime(datetime type),
suppose there is one record with the endTime(2/24/2003
11:45 AM)
If I use the query
select *
from t1
where endTime<'2/24/2003 11:50 AM'
I can get the record. But if the query change to:
select *
from t1
where endTime<'2/24/2003 12:50 AM'
I can not get the record?? obviously, '2/24/2003 11:45 AM'
is less than '2/24/2003 12:50 AM'
Could any one help me?
Haiwen
I have table(t1) with one column endTime(datetime type),
suppose there is one record with the endTime(2/24/2003
11:45 AM)
If I use the query
select *
from t1
where endTime<'2/24/2003 11:50 AM'
I can get the record. But if the query change to:
select *
from t1
where endTime<'2/24/2003 12:50 AM'
I can not get the record?? obviously, '2/24/2003 11:45 AM'
is less than '2/24/2003 12:50 AM'
Could any one help me?
Haiwen