M
Mario Krsnic
Hello everybody,
I have in a table the saved absences of persons. So:
name, BeginAbs, EndAbs
John, 1.5.2005, 12.5.2005
To get the absences for a certain date I use this query:
SELECT name FROM absences
WHERE MyDate Between BeginAbs And EndAbs;
This works fine. Now I would like to transform the query using pivot feature
to get a month view of
absences for every day and every person.
How to do it?
Thanks
Mario
I have in a table the saved absences of persons. So:
name, BeginAbs, EndAbs
John, 1.5.2005, 12.5.2005
To get the absences for a certain date I use this query:
SELECT name FROM absences
WHERE MyDate Between BeginAbs And EndAbs;
This works fine. Now I would like to transform the query using pivot feature
to get a month view of
absences for every day and every person.
How to do it?
Thanks
Mario