Re: Grouping



Simon Bridgewater wrote:
if you only want an array with the id
then

SELECT distinct(id) FROM the_table where type='whatever';

The exact thing I was looking for Thank you again :) .