去重的方式:

   第一种,设置表字段为主键,unique不重复

   第二种,在查询时去重,select * from table_name where id not in (select id from table_name_2)