摘要:查詢某個欄位不重複的方法
參考
http://ajxfxb.blog.163.com/
主要語法,使用min函數和group by 把不重複的id值找出,然後使用 IN 在原table 中把資料行查詢出來
select * from table where fid in(Select min(fid) FROM table group by name)
摘要:查詢某個欄位不重複的方法
參考
http://ajxfxb.blog.163.com/