Eliminar campos duplicados - BD
AUTOR PREGUNTA #1
-
¿Tienes la misma pregunta? Yo también
Esto también te interesa!
PREGUNTAS SIMILARES
#2
DELETE tabla
FROM tabla
LEFT OUTER JOIN (
SELECT MIN(id) as fila, Col1, Col2, Col3
FROM tabla
GROUP BY Col1, Col2, Col3
) as tablas2 ON
tabla.id = tablas2.id
WHERE
Tablas2.id IS NULL;