SELECT DISTINCT fieldName FROM tableName;
La requête suivante sélectionnera uniquement un champ 'zip' distinct.
SELECT DISTINCT zip FROM student;
SELECT * FROM tableName GROUP BY fieldName;
La requête suivante sélectionnera tous les champs avec un champ zip distinct.
SELECT * FROM student GROUP BY zip;