Given the table Seminar (SeminarNo,title,location),my SQL query is an attempt to delete the all the tuples with duplicate seminar ids, but im not sure where to go from here.it does not work.
Delete from Seminar S
where (
Select * from Seminar
Group by seminarno
Having count (seminarno)> 1 );
Any suggestions would be helpful