My fields are
ID | Name | StartTime | EndTime | Date | Description
I am looking for a way to select all rows with the same entries in all fields except for the ID.
I am not that familiar with SQL so I tried this approach but there is only one field relevant not (as in my case) five.
My first idea was to try something like:
SELECT *
FROM Table
order by Name, Date, StartTime, EndTime, Description
if I would look through all entries I would at least find the duplicates but that is definitely not the best way to solve the problem.