Hi all,
if I execute the SQL
select stops, xdate from traffic where xdate>=#8/1/05#
and xdate<=8/7/05#
I get 4 data sets
1.8.05 10
2.8.05 7
4.8.05 12
6.8.05 9
However, I would like to see the whole week. WIth zeros where there wasn't anything..so, like this:
1.8.05 10
2.8.05 7
3.8.05 0
4.8.05 12
5.8.05 0
6.8.05 9
7.8.05 0
How do I do this?
Thanks in advance.
Kingsley
if I execute the SQL
select stops, xdate from traffic where xdate>=#8/1/05#
and xdate<=8/7/05#
I get 4 data sets
1.8.05 10
2.8.05 7
4.8.05 12
6.8.05 9
However, I would like to see the whole week. WIth zeros where there wasn't anything..so, like this:
1.8.05 10
2.8.05 7
3.8.05 0
4.8.05 12
5.8.05 0
6.8.05 9
7.8.05 0
How do I do this?
Thanks in advance.
Kingsley