R
RFJ
The following is a bit of code used to count unique records. It works as a
want it to (as far as it goes).
SELECT Count(*) AS [Number]
FROM [SELECT DISTINCT [Org_Name] FROM [1]]. AS [%$##@_Alias];
It returns :
Number
23
What I want to do is to use that code but to count the number of unique
records that match another field. So the output from the query would be
Size Number
1 6
2 3
3 8
4 6
The table name is Band
The field name is Size
Can SKS help
TIA
Rob
want it to (as far as it goes).
SELECT Count(*) AS [Number]
FROM [SELECT DISTINCT [Org_Name] FROM [1]]. AS [%$##@_Alias];
It returns :
Number
23
What I want to do is to use that code but to count the number of unique
records that match another field. So the output from the query would be
Size Number
1 6
2 3
3 8
4 6
The table name is Band
The field name is Size
Can SKS help
TIA
Rob