I have duplicate MYSQL tables. I'd like to delete duplicates. But MySQL gives an error message. Does MYSQL and MARIA DB not support SQL statements that run on Oracle?
delete from ESTONIA E where exists(select 1 from ESTONIA x where x.city=E.city and x.id<>E.id);