1、mysql去重插入,插入重复数据跳过,
insert ignore into goods values(id,name,age);
设置唯一索引
UNIQUE KEY `gift_card_code` (`gift_card_code`) USING BTREE
2、group by 和order by的使用
两者一起使用,group by在前,order by在后