Mysql
 sql >> Database >  >> RDS >> Mysql

Come ottenere record distinti dalla tabella MySQL?

SELECT DISTINCT fieldName FROM tableName;

La query seguente selezionerà solo un campo 'zip' distinto.

SELECT DISTINCT zip FROM student;
SELECT * FROM tableName GROUP BY fieldName;

La seguente query selezionerà tutti i campi insieme a un campo zip distinto.

SELECT * FROM student GROUP BY zip;