S
sundart
Unregistered / Unconfirmed
GUEST, unregistred user!
各位大虾:
表OrderTable有一DateTime型字段dDate,通过以下方法赋值:
FieldByName('dDate').Value := Now;
发现:
比如当前日期为2001-10-23,该字段的值为:‘2001-10-23 00:00:00.000’
而有时候它会为:‘2001-10-23 08:00:00.000’(不知道为什么会显示时间?)
那么我要查询今天的数据时:
select * from OrderTable where dDate = '2001-10-23'
则只能显示‘2001-10-23 00:00:00.000’的数据。
请问如何才能完全显示合符条件的数据?
谢谢!
表OrderTable有一DateTime型字段dDate,通过以下方法赋值:
FieldByName('dDate').Value := Now;
发现:
比如当前日期为2001-10-23,该字段的值为:‘2001-10-23 00:00:00.000’
而有时候它会为:‘2001-10-23 08:00:00.000’(不知道为什么会显示时间?)
那么我要查询今天的数据时:
select * from OrderTable where dDate = '2001-10-23'
则只能显示‘2001-10-23 00:00:00.000’的数据。
请问如何才能完全显示合符条件的数据?
谢谢!