Firebird 从日期时间列中选择不同的日期
我正在编写一个日志查看器,它将能够显示两个日期之间的日志。 目前,我正在使用 a:
SELECT DISTINCT DATETIME FROM EVENTSGENERAL A JOIN EVENTSGENERATORS B ON B.GENERATOR_ = A.GENERATOR_ ;
但它会返回太多每天的值,例如,因为使用的 OADATE 精度设置为毫秒。
如何选择每天仅一个值? 例如,如果一月 1 天有 100 行日志,一月 2 天、一月 3 日和一月 4 天为零行,但一月 5 天有 50 行,如何处理我选择:1/January,5/January ?
我正在使用 firebird 数据库和 C# / ASP.NET
提前感谢您的任何回复,并且对于任何糟糕的英语错误,我们深表歉意
I am writing a Log Viewer,that will be able to show logs between two dates.
Currently, i am using a:
SELECT DISTINCT DATETIME FROM EVENTSGENERAL A JOIN EVENTSGENERATORS B ON B.GENERATOR_ = A.GENERATOR_ ;
But it returns too many values of each day for example,since the precision of OADATE used,is set to Miliseconds.
How do i select Only One Value per Day?
For example,if there are 100 rows of logs for day 1/January, Zero rows for days 2/January,3/January and 4/January, but 50 rows for day 5/January , how do i select : 1/January,5/January ?
I am using a firebird database,and C# / ASP.NET
Thanks in advance for any replies,and sorry about any bad english mistake
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您只需要日期部分,因此将时间戳转换为日期:
You only want the date part so cast the timestamp to date: