I have a client that has a table called Doctors and a field called Note. Unfortunately the Note field is not set up to deny duplicates so there are duplicate values in that field. Is there a way to set up the query to not grab duplicates but rather, just each possible value only once? My code so far is as follows:
<cfquery name="GetNotes" datasource="finder">
SELECT Note
FROM Doctors
WHERE Note <> ''
ORDER BY Note
</cfquery>
Thanks,
Kevin