Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
Devo selezionare tutti i campi (SELECT * FROM...) ma anche fare un DISTINCT (SELECT DISTINCT name FROM) ora come faccio a fare entrabe le cose?
Prova in quest modo:
SELECT * FROM tabella GROUP BY name;
Ciao!