去重的方式:
第一种,设置表字段为主键,unique不重复
第二种,在查询时去重,select * from table_name where id not in (select id from table_name_2)
转载于:https://blog.51cto.com/cslguji/1955570
去重的方式:
第一种,设置表字段为主键,unique不重复
第二种,在查询时去重,select * from table_name where id not in (select id from table_name_2)
转载于:https://blog.51cto.com/cslguji/1955570