T
Tim
Hi folks,
I need a help on my following problem.
Table:
Field1 Field2
1 1
2 1
4 1
3 2
4 2
5 1
6 3
7 8
8 10
Query:
SELECT Table3.Field2
FROM Table3
GROUP BY Table3.Field2;
Output:
Field2
1
10
2
3
8
The output is not I expected. I want to have the count of
group (5). Could anyone show me how to do it?
Thanks in advance.
Tim.
I need a help on my following problem.
Table:
Field1 Field2
1 1
2 1
4 1
3 2
4 2
5 1
6 3
7 8
8 10
Query:
SELECT Table3.Field2
FROM Table3
GROUP BY Table3.Field2;
Output:
Field2
1
10
2
3
8
The output is not I expected. I want to have the count of
group (5). Could anyone show me how to do it?
Thanks in advance.
Tim.