hi,
I have a sqlite problem
have a table with the following values
Field1, Field2
27256 , 1
27256 , 1
27256 , 1
27256 , 2
27256 , 2
28767, 1
28767, 1
28767, 2
32345, 1
32345, 1
I want to have the number of records when I group by field1 and field2
27256 , 1
27256 , 2
28767, 1
28767, 2
32345, 1
this is how it would be grouped without repetition
so i want to have the result '5
Select ? group by field1, field2
regards
Frank
I have a sqlite problem
have a table with the following values
Field1, Field2
27256 , 1
27256 , 1
27256 , 1
27256 , 2
27256 , 2
28767, 1
28767, 1
28767, 2
32345, 1
32345, 1
I want to have the number of records when I group by field1 and field2
27256 , 1
27256 , 2
28767, 1
28767, 2
32345, 1
this is how it would be grouped without repetition
so i want to have the result '5
Select ? group by field1, field2
regards
Frank