I have a table "test" with the following fields and data:
id: date:
1 16.01.2006
2 17.01.2006
3 19.01.2006
4 21.01.2006
Is it possible to have a query with an additional field "date2" which displays the "date" value from the next record?
Something like this:
SELECT test.id, test.date, ([nextrecord].[date]) AS date2
FROM test;
Would appreciate any help.
kind regards,
Hanss
Zurich
id: date:
1 16.01.2006
2 17.01.2006
3 19.01.2006
4 21.01.2006
Is it possible to have a query with an additional field "date2" which displays the "date" value from the next record?
Something like this:
SELECT test.id, test.date, ([nextrecord].[date]) AS date2
FROM test;
Would appreciate any help.
kind regards,
Hanss
Zurich