ok, i understand now what values are being returned from the sql query, but how do i output any of those values?
my query:
SELECT COUNT(*),Category FROM product GROUP BY Category HAVING COUNT(*) > 1
the output i got was two columns:
XPR1000 and Category
with values
6 bla1
6 bla2
how can i now return those values and response.write there are 6 of bla1 and 6 of bla2???
thanx ######## CtN ########