Trying to calculate the days between the date field of different records.
Example:
Field1 Field2
1 11/12/02
2 11/08/02
3 11/06/02
4 11/03/02
Result I want...
Field1 Field2 Result
1 11/12/02 4
2 11/08/02 2
3 11/06/02 3
4 11/03/02 0
How could I accomplish this in an SQL statement.
Thanks.
Example:
Field1 Field2
1 11/12/02
2 11/08/02
3 11/06/02
4 11/03/02
Result I want...
Field1 Field2 Result
1 11/12/02 4
2 11/08/02 2
3 11/06/02 3
4 11/03/02 0
How could I accomplish this in an SQL statement.
Thanks.