hi,
consider the following table
TID DocID Date
885328 090041d3800bff2d 2005-10-29 12:36:31.940
885393 090041d3800bff2d 2005-5-29 12:51:58.067
885403 090041d3800bff2d 2005-3-29 12:55:58.967
885557 090041d3800bff2d 2005-2-29 13:40:47.773
885569 090041d3800bff2d 2005-2-29 13:43:55.027
where TID is the trackID, DocID is document ID and Date is the date this document was accessed. I need to know the differences between each successive Date by months. so I need the following answer
TID DocID Difference
885328 090041d3800bff2d 5
885393 090041d3800bff2d 2
885403 090041d3800bff2d 1
885557 090041d3800bff2d 0
885569 090041d3800bff2d -
Please help.
Thanks in advance!
consider the following table
TID DocID Date
885328 090041d3800bff2d 2005-10-29 12:36:31.940
885393 090041d3800bff2d 2005-5-29 12:51:58.067
885403 090041d3800bff2d 2005-3-29 12:55:58.967
885557 090041d3800bff2d 2005-2-29 13:40:47.773
885569 090041d3800bff2d 2005-2-29 13:43:55.027
where TID is the trackID, DocID is document ID and Date is the date this document was accessed. I need to know the differences between each successive Date by months. so I need the following answer
TID DocID Difference
885328 090041d3800bff2d 5
885393 090041d3800bff2d 2
885403 090041d3800bff2d 1
885557 090041d3800bff2d 0
885569 090041d3800bff2d -
Please help.
Thanks in advance!