Alright, I have this query:
SELECT key, manufacturer,name,version FROM software ORDER BY name ASC
And now I need only DISTINCT values, but of course the key is auto incrementing, so I cannot just put DISTINCT in front, is there any way to do this in 1 query, what I se ein my head is:
SELECT key, DISTINCT(manufacturer,name,version) FROM software ORDER BY name ASC
Any help, and thanks.