Date/time comparison

て烟熏妆下的殇ゞ 提交于 2019-12-13 10:10:04

问题


I want to find the date/time with minimum date/time between records. In a table with multiple records.

Fx.

 - 11/11-15 13:00
 - 11/11-15 15:30
 - 11/11-15 16:45 <= (find this record)
 - Timenow (11/11-15 18:33) the current record i want to create but i need to compare the old dates with.

I can't create the logic, help !

Thanks


回答1:


You can create a function that returns the difference between two dates, run all the possible dates through this function, then pick the lowest difference.

Something like this (pseudo c code)

 int array[numdates];
 for (int i=0;i<numdates;i++)
     array[i]=compareDates(date[index], currentDate);

Then you can sort the array so the lowest number is at the beginning (or end) and return that one.



来源:https://stackoverflow.com/questions/33655647/date-time-comparison

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!