I need help changing syntax to delete duplicates in my data. I have tried the following query:
DELETE year, month, day, time, temp, COUNT(*)
FROM Weather
GROUP BY year, month, day, time, temp
HAVING COUNT(*) > 1;
I need help changing syntax to delete duplicates in my data. I have tried the following query:
DELETE year, month, day, time, temp, COUNT(*)
FROM Weather
GROUP BY year, month, day, time, temp
HAVING COUNT(*) > 1;