Sélectionnez Distinct après jointure

SELECT DISTINCT table1.field1, table2.field2 FROM table1
JOIN table2 ON table1.id = table2.id 
peamdev