SQL

sql 查询某字段不重复的全部记录:

select  * from table where fid in(Select min(fid) FROM table group by name)

原文地址:https://www.cnblogs.com/zhangchaoran/p/8383667.html