I want to populate a drop down box using the one field from by data, I just want the unique values returned for a set of data from one table. Group by is not implemented in the polyhedra database I am using. Name is primary key for table and all names are unique.
I am trying to run this query:
SELECT DISTINCT userstring05
FROM digital
WHERE userstring05 LIKE '_%'
AND name LIKE '200-B%'
But I get this error:
DISTINCT clause used on non-distinct select