I have a database that stores Call Number, Time, and ID
I need to select all the distinct call numbers along with the times.
This is my query
SELECT Distinct Call, Time
FROM CallBack
ORDER BY Call
However this is returning duplicate call Numbers with different Times
How do I get it to only be distinct on Call and ignore the time but just give me the time?