使用distinct去重:例:select distinct column1,column2 ... from table_name where ....;注意:1.distinct只能放在去重字段的最前面 2.distinct 后的字段名全部算在去重条件中 也就是如果 column1 且 column2 必须都相同才能算作重复的记录