This topic is locked

Instead of total,AVG or COUNT, I need to **Select Distinct*** on the L

10/13/2008 5:26:58 PM
PHPRunner General questions
B
bozzo author

Ok, I need to check how many UNIQUE values are in the array displayed on the PAGE.
Instead of displaying TOTAL, AVG or COUNT, I need to count only how many unique values...

Is there a way to manipulate this arrays???

Is this array "manageable" thru sql queries???
Thx in advance.

T
thesofa 10/14/2008

Ok, I need to check how many UNIQUE values are in the array displayed on the PAGE.

Instead of displaying TOTAL, AVG or COUNT, I need to count only how many unique values...

Is there a way to manipulate this arrays???

Is this array "manageable" thru sql queries???
Thx in advance.



all I do is type Distinct after select on the SQL view of the table

B
bozzo author 10/14/2008



all I do is type Distinct after select on the SQL view of the table


Sorry if I expressed myself wrong, I want to LIST ALL the values, but count only the distinct listed....
So I needed to get control of the displayed array, to make sql with it...