Let's say I have a Mysql table that contains timestamps, ids, and a few more parameters. How can I remove an entire row based on duplicate timestamps?
SELECT DISTINCT COL_NAME From tblname
, will return 1 column with my timestamps filtered, but I need to actually remove them from my table (The Entire row).
Thanks!